Linux-libre 4.4.228-gnu
[librecmc/linux-libre.git] / net / netfilter / xt_osf.c
1 /*
2  * Copyright (c) 2003+ Evgeniy Polyakov <zbr@ioremap.net>
3  *
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, see <http://www.gnu.org/licenses/>.
17  */
18 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
19 #include <linux/module.h>
20 #include <linux/kernel.h>
21
22 #include <linux/capability.h>
23 #include <linux/if.h>
24 #include <linux/inetdevice.h>
25 #include <linux/ip.h>
26 #include <linux/list.h>
27 #include <linux/rculist.h>
28 #include <linux/skbuff.h>
29 #include <linux/slab.h>
30 #include <linux/tcp.h>
31
32 #include <net/ip.h>
33 #include <net/tcp.h>
34
35 #include <linux/netfilter/nfnetlink.h>
36 #include <linux/netfilter/x_tables.h>
37 #include <net/netfilter/nf_log.h>
38 #include <linux/netfilter/xt_osf.h>
39
40 struct xt_osf_finger {
41         struct rcu_head                 rcu_head;
42         struct list_head                finger_entry;
43         struct xt_osf_user_finger       finger;
44 };
45
46 enum osf_fmatch_states {
47         /* Packet does not match the fingerprint */
48         FMATCH_WRONG = 0,
49         /* Packet matches the fingerprint */
50         FMATCH_OK,
51         /* Options do not match the fingerprint, but header does */
52         FMATCH_OPT_WRONG,
53 };
54
55 /*
56  * Indexed by dont-fragment bit.
57  * It is the only constant value in the fingerprint.
58  */
59 static struct list_head xt_osf_fingers[2];
60
61 static const struct nla_policy xt_osf_policy[OSF_ATTR_MAX + 1] = {
62         [OSF_ATTR_FINGER]       = { .len = sizeof(struct xt_osf_user_finger) },
63 };
64
65 static int xt_osf_add_callback(struct sock *ctnl, struct sk_buff *skb,
66                                const struct nlmsghdr *nlh,
67                                const struct nlattr * const osf_attrs[])
68 {
69         struct xt_osf_user_finger *f;
70         struct xt_osf_finger *kf = NULL, *sf;
71         int err = 0;
72
73         if (!capable(CAP_NET_ADMIN))
74                 return -EPERM;
75
76         if (!osf_attrs[OSF_ATTR_FINGER])
77                 return -EINVAL;
78
79         if (!(nlh->nlmsg_flags & NLM_F_CREATE))
80                 return -EINVAL;
81
82         f = nla_data(osf_attrs[OSF_ATTR_FINGER]);
83
84         kf = kmalloc(sizeof(struct xt_osf_finger), GFP_KERNEL);
85         if (!kf)
86                 return -ENOMEM;
87
88         memcpy(&kf->finger, f, sizeof(struct xt_osf_user_finger));
89
90         list_for_each_entry(sf, &xt_osf_fingers[!!f->df], finger_entry) {
91                 if (memcmp(&sf->finger, f, sizeof(struct xt_osf_user_finger)))
92                         continue;
93
94                 kfree(kf);
95                 kf = NULL;
96
97                 if (nlh->nlmsg_flags & NLM_F_EXCL)
98                         err = -EEXIST;
99                 break;
100         }
101
102         /*
103          * We are protected by nfnl mutex.
104          */
105         if (kf)
106                 list_add_tail_rcu(&kf->finger_entry, &xt_osf_fingers[!!f->df]);
107
108         return err;
109 }
110
111 static int xt_osf_remove_callback(struct sock *ctnl, struct sk_buff *skb,
112                                   const struct nlmsghdr *nlh,
113                                   const struct nlattr * const osf_attrs[])
114 {
115         struct xt_osf_user_finger *f;
116         struct xt_osf_finger *sf;
117         int err = -ENOENT;
118
119         if (!capable(CAP_NET_ADMIN))
120                 return -EPERM;
121
122         if (!osf_attrs[OSF_ATTR_FINGER])
123                 return -EINVAL;
124
125         f = nla_data(osf_attrs[OSF_ATTR_FINGER]);
126
127         list_for_each_entry(sf, &xt_osf_fingers[!!f->df], finger_entry) {
128                 if (memcmp(&sf->finger, f, sizeof(struct xt_osf_user_finger)))
129                         continue;
130
131                 /*
132                  * We are protected by nfnl mutex.
133                  */
134                 list_del_rcu(&sf->finger_entry);
135                 kfree_rcu(sf, rcu_head);
136
137                 err = 0;
138                 break;
139         }
140
141         return err;
142 }
143
144 static const struct nfnl_callback xt_osf_nfnetlink_callbacks[OSF_MSG_MAX] = {
145         [OSF_MSG_ADD]   = {
146                 .call           = xt_osf_add_callback,
147                 .attr_count     = OSF_ATTR_MAX,
148                 .policy         = xt_osf_policy,
149         },
150         [OSF_MSG_REMOVE]        = {
151                 .call           = xt_osf_remove_callback,
152                 .attr_count     = OSF_ATTR_MAX,
153                 .policy         = xt_osf_policy,
154         },
155 };
156
157 static const struct nfnetlink_subsystem xt_osf_nfnetlink = {
158         .name                   = "osf",
159         .subsys_id              = NFNL_SUBSYS_OSF,
160         .cb_count               = OSF_MSG_MAX,
161         .cb                     = xt_osf_nfnetlink_callbacks,
162 };
163
164 static inline int xt_osf_ttl(const struct sk_buff *skb, const struct xt_osf_info *info,
165                             unsigned char f_ttl)
166 {
167         const struct iphdr *ip = ip_hdr(skb);
168
169         if (info->flags & XT_OSF_TTL) {
170                 if (info->ttl == XT_OSF_TTL_TRUE)
171                         return ip->ttl == f_ttl;
172                 if (info->ttl == XT_OSF_TTL_NOCHECK)
173                         return 1;
174                 else if (ip->ttl <= f_ttl)
175                         return 1;
176                 else {
177                         struct in_device *in_dev = __in_dev_get_rcu(skb->dev);
178                         int ret = 0;
179
180                         for_ifa(in_dev) {
181                                 if (inet_ifa_match(ip->saddr, ifa)) {
182                                         ret = (ip->ttl == f_ttl);
183                                         break;
184                                 }
185                         }
186                         endfor_ifa(in_dev);
187
188                         return ret;
189                 }
190         }
191
192         return ip->ttl == f_ttl;
193 }
194
195 static bool
196 xt_osf_match_packet(const struct sk_buff *skb, struct xt_action_param *p)
197 {
198         const struct xt_osf_info *info = p->matchinfo;
199         const struct iphdr *ip = ip_hdr(skb);
200         const struct tcphdr *tcp;
201         struct tcphdr _tcph;
202         int fmatch = FMATCH_WRONG, fcount = 0;
203         unsigned int optsize = 0, check_WSS = 0;
204         u16 window, totlen, mss = 0;
205         bool df;
206         const unsigned char *optp = NULL, *_optp = NULL;
207         unsigned char opts[MAX_IPOPTLEN];
208         const struct xt_osf_finger *kf;
209         const struct xt_osf_user_finger *f;
210         struct net *net = p->net;
211
212         if (!info)
213                 return false;
214
215         tcp = skb_header_pointer(skb, ip_hdrlen(skb), sizeof(struct tcphdr), &_tcph);
216         if (!tcp)
217                 return false;
218
219         if (!tcp->syn)
220                 return false;
221
222         totlen = ntohs(ip->tot_len);
223         df = ntohs(ip->frag_off) & IP_DF;
224         window = ntohs(tcp->window);
225
226         if (tcp->doff * 4 > sizeof(struct tcphdr)) {
227                 optsize = tcp->doff * 4 - sizeof(struct tcphdr);
228
229                 _optp = optp = skb_header_pointer(skb, ip_hdrlen(skb) +
230                                 sizeof(struct tcphdr), optsize, opts);
231         }
232
233         rcu_read_lock();
234         list_for_each_entry_rcu(kf, &xt_osf_fingers[df], finger_entry) {
235                 int foptsize, optnum;
236
237                 f = &kf->finger;
238
239                 if (!(info->flags & XT_OSF_LOG) && strcmp(info->genre, f->genre))
240                         continue;
241
242                 optp = _optp;
243                 fmatch = FMATCH_WRONG;
244
245                 if (totlen != f->ss || !xt_osf_ttl(skb, info, f->ttl))
246                         continue;
247
248                 /*
249                  * Should not happen if userspace parser was written correctly.
250                  */
251                 if (f->wss.wc >= OSF_WSS_MAX)
252                         continue;
253
254                 /* Check options */
255
256                 foptsize = 0;
257                 for (optnum = 0; optnum < f->opt_num; ++optnum)
258                         foptsize += f->opt[optnum].length;
259
260                 if (foptsize > MAX_IPOPTLEN ||
261                     optsize > MAX_IPOPTLEN ||
262                     optsize != foptsize)
263                         continue;
264
265                 check_WSS = f->wss.wc;
266
267                 for (optnum = 0; optnum < f->opt_num; ++optnum) {
268                         if (f->opt[optnum].kind == (*optp)) {
269                                 __u32 len = f->opt[optnum].length;
270                                 const __u8 *optend = optp + len;
271                                 int loop_cont = 0;
272
273                                 fmatch = FMATCH_OK;
274
275                                 switch (*optp) {
276                                 case OSFOPT_MSS:
277                                         mss = optp[3];
278                                         mss <<= 8;
279                                         mss |= optp[2];
280
281                                         mss = ntohs((__force __be16)mss);
282                                         break;
283                                 case OSFOPT_TS:
284                                         loop_cont = 1;
285                                         break;
286                                 }
287
288                                 optp = optend;
289                         } else
290                                 fmatch = FMATCH_OPT_WRONG;
291
292                         if (fmatch != FMATCH_OK)
293                                 break;
294                 }
295
296                 if (fmatch != FMATCH_OPT_WRONG) {
297                         fmatch = FMATCH_WRONG;
298
299                         switch (check_WSS) {
300                         case OSF_WSS_PLAIN:
301                                 if (f->wss.val == 0 || window == f->wss.val)
302                                         fmatch = FMATCH_OK;
303                                 break;
304                         case OSF_WSS_MSS:
305                                 /*
306                                  * Some smart modems decrease mangle MSS to
307                                  * SMART_MSS_2, so we check standard, decreased
308                                  * and the one provided in the fingerprint MSS
309                                  * values.
310                                  */
311 #define SMART_MSS_1     1460
312 #define SMART_MSS_2     1448
313                                 if (window == f->wss.val * mss ||
314                                     window == f->wss.val * SMART_MSS_1 ||
315                                     window == f->wss.val * SMART_MSS_2)
316                                         fmatch = FMATCH_OK;
317                                 break;
318                         case OSF_WSS_MTU:
319                                 if (window == f->wss.val * (mss + 40) ||
320                                     window == f->wss.val * (SMART_MSS_1 + 40) ||
321                                     window == f->wss.val * (SMART_MSS_2 + 40))
322                                         fmatch = FMATCH_OK;
323                                 break;
324                         case OSF_WSS_MODULO:
325                                 if ((window % f->wss.val) == 0)
326                                         fmatch = FMATCH_OK;
327                                 break;
328                         }
329                 }
330
331                 if (fmatch != FMATCH_OK)
332                         continue;
333
334                 fcount++;
335
336                 if (info->flags & XT_OSF_LOG)
337                         nf_log_packet(net, p->family, p->hooknum, skb,
338                                       p->in, p->out, NULL,
339                                       "%s [%s:%s] : %pI4:%d -> %pI4:%d hops=%d\n",
340                                       f->genre, f->version, f->subtype,
341                                       &ip->saddr, ntohs(tcp->source),
342                                       &ip->daddr, ntohs(tcp->dest),
343                                       f->ttl - ip->ttl);
344
345                 if ((info->flags & XT_OSF_LOG) &&
346                     info->loglevel == XT_OSF_LOGLEVEL_FIRST)
347                         break;
348         }
349         rcu_read_unlock();
350
351         if (!fcount && (info->flags & XT_OSF_LOG))
352                 nf_log_packet(net, p->family, p->hooknum, skb, p->in,
353                               p->out, NULL,
354                         "Remote OS is not known: %pI4:%u -> %pI4:%u\n",
355                                 &ip->saddr, ntohs(tcp->source),
356                                 &ip->daddr, ntohs(tcp->dest));
357
358         if (fcount)
359                 fmatch = FMATCH_OK;
360
361         return fmatch == FMATCH_OK;
362 }
363
364 static struct xt_match xt_osf_match = {
365         .name           = "osf",
366         .revision       = 0,
367         .family         = NFPROTO_IPV4,
368         .proto          = IPPROTO_TCP,
369         .hooks          = (1 << NF_INET_LOCAL_IN) |
370                                 (1 << NF_INET_PRE_ROUTING) |
371                                 (1 << NF_INET_FORWARD),
372         .match          = xt_osf_match_packet,
373         .matchsize      = sizeof(struct xt_osf_info),
374         .me             = THIS_MODULE,
375 };
376
377 static int __init xt_osf_init(void)
378 {
379         int err = -EINVAL;
380         int i;
381
382         for (i=0; i<ARRAY_SIZE(xt_osf_fingers); ++i)
383                 INIT_LIST_HEAD(&xt_osf_fingers[i]);
384
385         err = nfnetlink_subsys_register(&xt_osf_nfnetlink);
386         if (err < 0) {
387                 pr_err("Failed to register OSF nsfnetlink helper (%d)\n", err);
388                 goto err_out_exit;
389         }
390
391         err = xt_register_match(&xt_osf_match);
392         if (err) {
393                 pr_err("Failed to register OS fingerprint "
394                        "matching module (%d)\n", err);
395                 goto err_out_remove;
396         }
397
398         return 0;
399
400 err_out_remove:
401         nfnetlink_subsys_unregister(&xt_osf_nfnetlink);
402 err_out_exit:
403         return err;
404 }
405
406 static void __exit xt_osf_fini(void)
407 {
408         struct xt_osf_finger *f;
409         int i;
410
411         nfnetlink_subsys_unregister(&xt_osf_nfnetlink);
412         xt_unregister_match(&xt_osf_match);
413
414         rcu_read_lock();
415         for (i=0; i<ARRAY_SIZE(xt_osf_fingers); ++i) {
416
417                 list_for_each_entry_rcu(f, &xt_osf_fingers[i], finger_entry) {
418                         list_del_rcu(&f->finger_entry);
419                         kfree_rcu(f, rcu_head);
420                 }
421         }
422         rcu_read_unlock();
423
424         rcu_barrier();
425 }
426
427 module_init(xt_osf_init);
428 module_exit(xt_osf_fini);
429
430 MODULE_LICENSE("GPL");
431 MODULE_AUTHOR("Evgeniy Polyakov <zbr@ioremap.net>");
432 MODULE_DESCRIPTION("Passive OS fingerprint matching.");
433 MODULE_ALIAS("ipt_osf");
434 MODULE_ALIAS("ip6t_osf");
435 MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_OSF);