blob: 6e494d5844128077dadc9f1cf1c44f2f039043f0 [file] [log] [blame]
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001/* The "unknown" protocol. This is what is used for protocols we
2 * don't understand. It's returned by ip_ct_find_proto().
3 */
4
5/* (C) 1999-2001 Paul `Rusty' Russell
6 * (C) 2002-2006 Netfilter Core Team <coreteam@netfilter.org>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#include <linux/types.h>
14#include <linux/init.h>
15
16#include <linux/netfilter.h>
17#include <net/netfilter/nf_nat.h>
Patrick McHardyc7232c92012-08-26 19:14:06 +020018#include <net/netfilter/nf_nat_l4proto.h>
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080019
Jan Engelhardtf2ea8252008-04-14 11:15:53 +020020static bool unknown_in_range(const struct nf_conntrack_tuple *tuple,
21 enum nf_nat_manip_type manip_type,
22 const union nf_conntrack_man_proto *min,
23 const union nf_conntrack_man_proto *max)
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080024{
Jan Engelhardtf2ea8252008-04-14 11:15:53 +020025 return true;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080026}
27
Patrick McHardyc7232c92012-08-26 19:14:06 +020028static void unknown_unique_tuple(const struct nf_nat_l3proto *l3proto,
29 struct nf_conntrack_tuple *tuple,
30 const struct nf_nat_range *range,
Jan Engelhardtf2ea8252008-04-14 11:15:53 +020031 enum nf_nat_manip_type maniptype,
32 const struct nf_conn *ct)
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080033{
34 /* Sorry: we can't help you; if it's not unique, we can't frob
Patrick McHardyc7232c92012-08-26 19:14:06 +020035 * anything.
36 */
Changli Gaof43dc982010-08-02 17:20:54 +020037 return;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080038}
39
Jan Engelhardtf2ea8252008-04-14 11:15:53 +020040static bool
Herbert Xu3db05fe2007-10-15 00:53:15 -070041unknown_manip_pkt(struct sk_buff *skb,
Patrick McHardyc7232c92012-08-26 19:14:06 +020042 const struct nf_nat_l3proto *l3proto,
43 unsigned int iphdroff, unsigned int hdroff,
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080044 const struct nf_conntrack_tuple *tuple,
45 enum nf_nat_manip_type maniptype)
46{
Jan Engelhardtf2ea8252008-04-14 11:15:53 +020047 return true;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080048}
49
Patrick McHardyc7232c92012-08-26 19:14:06 +020050const struct nf_nat_l4proto nf_nat_l4proto_unknown = {
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080051 .manip_pkt = unknown_manip_pkt,
52 .in_range = unknown_in_range,
53 .unique_tuple = unknown_unique_tuple,
54};