2 * broadcast connection tracking helper
4 * (c) 2005 Patrick McHardy <kaber@trash.net>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
12 #include <linux/module.h>
14 #include <net/route.h>
15 #include <linux/inetdevice.h>
16 #include <linux/skbuff.h>
18 #include <net/netfilter/nf_conntrack.h>
19 #include <net/netfilter/nf_conntrack_helper.h>
20 #include <net/netfilter/nf_conntrack_expect.h>
22 int nf_conntrack_broadcast_help(struct sk_buff
*skb
,
25 enum ip_conntrack_info ctinfo
,
28 struct nf_conntrack_expect
*exp
;
29 struct iphdr
*iph
= ip_hdr(skb
);
30 struct rtable
*rt
= skb_rtable(skb
);
31 struct in_device
*in_dev
;
32 struct nf_conn_help
*help
= nfct_help(ct
);
35 /* we're only interested in locally generated packets */
38 if (rt
== NULL
|| !(rt
->rt_flags
& RTCF_BROADCAST
))
40 if (CTINFO2DIR(ctinfo
) != IP_CT_DIR_ORIGINAL
)
44 in_dev
= __in_dev_get_rcu(rt
->dst
.dev
);
46 for_primary_ifa(in_dev
) {
47 if (ifa
->ifa_broadcast
== iph
->daddr
) {
58 exp
= nf_ct_expect_alloc(ct
);
62 exp
->tuple
= ct
->tuplehash
[IP_CT_DIR_REPLY
].tuple
;
63 exp
->tuple
.src
.u
.udp
.port
= help
->helper
->tuple
.src
.u
.udp
.port
;
65 exp
->mask
.src
.u3
.ip
= mask
;
66 exp
->mask
.src
.u
.udp
.port
= htons(0xFFFF);
69 exp
->flags
= NF_CT_EXPECT_PERMANENT
;
70 exp
->class = NF_CT_EXPECT_CLASS_DEFAULT
;
73 nf_ct_expect_related(exp
);
74 nf_ct_expect_put(exp
);
76 nf_ct_refresh(ct
, skb
, timeout
* HZ
);
80 EXPORT_SYMBOL_GPL(nf_conntrack_broadcast_help
);
82 MODULE_LICENSE("GPL");