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