blob: a2901bf829c09165ef9bc56b6627e6d2511d66ee [file] [log] [blame]
Patrick McHardya536df32006-12-02 22:10:18 -08001/* (C) 2001-2002 Magnus Boden <mb@ozaba.mine.nu>
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 as
5 * published by the Free Software Foundation.
6 */
7
8#include <linux/module.h>
Patrick McHardya536df32006-12-02 22:10:18 -08009#include <linux/udp.h>
10
11#include <net/netfilter/nf_nat_helper.h>
12#include <net/netfilter/nf_nat_rule.h>
13#include <net/netfilter/nf_conntrack_helper.h>
14#include <net/netfilter/nf_conntrack_expect.h>
15#include <linux/netfilter/nf_conntrack_tftp.h>
16
17MODULE_AUTHOR("Magnus Boden <mb@ozaba.mine.nu>");
18MODULE_DESCRIPTION("TFTP NAT helper");
19MODULE_LICENSE("GPL");
20MODULE_ALIAS("ip_nat_tftp");
21
Herbert Xu3db05fe2007-10-15 00:53:15 -070022static unsigned int help(struct sk_buff *skb,
Patrick McHardya536df32006-12-02 22:10:18 -080023 enum ip_conntrack_info ctinfo,
24 struct nf_conntrack_expect *exp)
25{
Jan Engelhardtde24b4e2008-01-31 04:50:51 -080026 const struct nf_conn *ct = exp->master;
Patrick McHardya536df32006-12-02 22:10:18 -080027
28 exp->saved_proto.udp.port
29 = ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.u.udp.port;
30 exp->dir = IP_CT_DIR_REPLY;
31 exp->expectfn = nf_nat_follow_master;
Patrick McHardy68236452007-07-07 22:30:49 -070032 if (nf_ct_expect_related(exp) != 0)
Patrick McHardya536df32006-12-02 22:10:18 -080033 return NF_DROP;
34 return NF_ACCEPT;
35}
36
37static void __exit nf_nat_tftp_fini(void)
38{
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +000039 RCU_INIT_POINTER(nf_nat_tftp_hook, NULL);
Patrick McHardya536df32006-12-02 22:10:18 -080040 synchronize_rcu();
41}
42
43static int __init nf_nat_tftp_init(void)
44{
Patrick McHardyd1332e02007-11-05 20:43:30 -080045 BUG_ON(nf_nat_tftp_hook != NULL);
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +000046 RCU_INIT_POINTER(nf_nat_tftp_hook, help);
Patrick McHardya536df32006-12-02 22:10:18 -080047 return 0;
48}
49
50module_init(nf_nat_tftp_init);
51module_exit(nf_nat_tftp_fini);