Merge tag 'asoc-v5.3' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie...
[linux-2.6-microblaze.git] / net / netfilter / nf_conntrack_broadcast.c
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  *      broadcast connection tracking helper
4  *
5  *      (c) 2005 Patrick McHardy <kaber@trash.net>
6  */
7
8 #include <linux/module.h>
9 #include <linux/ip.h>
10 #include <net/route.h>
11 #include <linux/inetdevice.h>
12 #include <linux/skbuff.h>
13
14 #include <net/netfilter/nf_conntrack.h>
15 #include <net/netfilter/nf_conntrack_helper.h>
16 #include <net/netfilter/nf_conntrack_expect.h>
17
18 int nf_conntrack_broadcast_help(struct sk_buff *skb,
19                                 struct nf_conn *ct,
20                                 enum ip_conntrack_info ctinfo,
21                                 unsigned int timeout)
22 {
23         struct nf_conntrack_expect *exp;
24         struct iphdr *iph = ip_hdr(skb);
25         struct rtable *rt = skb_rtable(skb);
26         struct in_device *in_dev;
27         struct nf_conn_help *help = nfct_help(ct);
28         __be32 mask = 0;
29
30         /* we're only interested in locally generated packets */
31         if (skb->sk == NULL || !net_eq(nf_ct_net(ct), sock_net(skb->sk)))
32                 goto out;
33         if (rt == NULL || !(rt->rt_flags & RTCF_BROADCAST))
34                 goto out;
35         if (CTINFO2DIR(ctinfo) != IP_CT_DIR_ORIGINAL)
36                 goto out;
37
38         in_dev = __in_dev_get_rcu(rt->dst.dev);
39         if (in_dev != NULL) {
40                 for_primary_ifa(in_dev) {
41                         if (ifa->ifa_broadcast == iph->daddr) {
42                                 mask = ifa->ifa_mask;
43                                 break;
44                         }
45                 } endfor_ifa(in_dev);
46         }
47
48         if (mask == 0)
49                 goto out;
50
51         exp = nf_ct_expect_alloc(ct);
52         if (exp == NULL)
53                 goto out;
54
55         exp->tuple                = ct->tuplehash[IP_CT_DIR_REPLY].tuple;
56         exp->tuple.src.u.udp.port = help->helper->tuple.src.u.udp.port;
57
58         exp->mask.src.u3.ip       = mask;
59         exp->mask.src.u.udp.port  = htons(0xFFFF);
60
61         exp->expectfn             = NULL;
62         exp->flags                = NF_CT_EXPECT_PERMANENT;
63         exp->class                = NF_CT_EXPECT_CLASS_DEFAULT;
64         exp->helper               = NULL;
65
66         nf_ct_expect_related(exp);
67         nf_ct_expect_put(exp);
68
69         nf_ct_refresh(ct, skb, timeout * HZ);
70 out:
71         return NF_ACCEPT;
72 }
73 EXPORT_SYMBOL_GPL(nf_conntrack_broadcast_help);
74
75 MODULE_LICENSE("GPL");