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.
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.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
20 #include <linux/module.h>
21 #include <linux/kernel.h>
24 #include <linux/inetdevice.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>
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>
40 struct xt_osf_finger {
41 struct rcu_head rcu_head;
42 struct list_head finger_entry;
43 struct xt_osf_user_finger finger;
46 enum osf_fmatch_states {
47 /* Packet does not match the fingerprint */
49 /* Packet matches the fingerprint */
51 /* Options do not match the fingerprint, but header does */
56 * Indexed by dont-fragment bit.
57 * It is the only constant value in the fingerprint.
59 static struct list_head xt_osf_fingers[2];
61 static const struct nla_policy xt_osf_policy[OSF_ATTR_MAX + 1] = {
62 [OSF_ATTR_FINGER] = { .len = sizeof(struct xt_osf_user_finger) },
65 static void xt_osf_finger_free_rcu(struct rcu_head *rcu_head)
67 struct xt_osf_finger *f = container_of(rcu_head, struct xt_osf_finger, rcu_head);
72 static int xt_osf_add_callback(struct sock *ctnl, struct sk_buff *skb,
73 const struct nlmsghdr *nlh,
74 const struct nlattr * const osf_attrs[])
76 struct xt_osf_user_finger *f;
77 struct xt_osf_finger *kf = NULL, *sf;
80 if (!osf_attrs[OSF_ATTR_FINGER])
83 if (!(nlh->nlmsg_flags & NLM_F_CREATE))
86 f = nla_data(osf_attrs[OSF_ATTR_FINGER]);
88 kf = kmalloc(sizeof(struct xt_osf_finger), GFP_KERNEL);
92 memcpy(&kf->finger, f, sizeof(struct xt_osf_user_finger));
94 list_for_each_entry(sf, &xt_osf_fingers[!!f->df], finger_entry) {
95 if (memcmp(&sf->finger, f, sizeof(struct xt_osf_user_finger)))
101 if (nlh->nlmsg_flags & NLM_F_EXCL)
107 * We are protected by nfnl mutex.
110 list_add_tail_rcu(&kf->finger_entry, &xt_osf_fingers[!!f->df]);
115 static int xt_osf_remove_callback(struct sock *ctnl, struct sk_buff *skb,
116 const struct nlmsghdr *nlh,
117 const struct nlattr * const osf_attrs[])
119 struct xt_osf_user_finger *f;
120 struct xt_osf_finger *sf;
123 if (!osf_attrs[OSF_ATTR_FINGER])
126 f = nla_data(osf_attrs[OSF_ATTR_FINGER]);
128 list_for_each_entry(sf, &xt_osf_fingers[!!f->df], finger_entry) {
129 if (memcmp(&sf->finger, f, sizeof(struct xt_osf_user_finger)))
133 * We are protected by nfnl mutex.
135 list_del_rcu(&sf->finger_entry);
136 call_rcu(&sf->rcu_head, xt_osf_finger_free_rcu);
145 static const struct nfnl_callback xt_osf_nfnetlink_callbacks[OSF_MSG_MAX] = {
147 .call = xt_osf_add_callback,
148 .attr_count = OSF_ATTR_MAX,
149 .policy = xt_osf_policy,
152 .call = xt_osf_remove_callback,
153 .attr_count = OSF_ATTR_MAX,
154 .policy = xt_osf_policy,
158 static const struct nfnetlink_subsystem xt_osf_nfnetlink = {
160 .subsys_id = NFNL_SUBSYS_OSF,
161 .cb_count = OSF_MSG_MAX,
162 .cb = xt_osf_nfnetlink_callbacks,
165 static inline int xt_osf_ttl(const struct sk_buff *skb, const struct xt_osf_info *info,
168 const struct iphdr *ip = ip_hdr(skb);
170 if (info->flags & XT_OSF_TTL) {
171 if (info->ttl == XT_OSF_TTL_TRUE)
172 return ip->ttl == f_ttl;
173 if (info->ttl == XT_OSF_TTL_NOCHECK)
175 else if (ip->ttl <= f_ttl)
178 struct in_device *in_dev = __in_dev_get_rcu(skb->dev);
182 if (inet_ifa_match(ip->saddr, ifa)) {
183 ret = (ip->ttl == f_ttl);
193 return ip->ttl == f_ttl;
197 xt_osf_match_packet(const struct sk_buff *skb, struct xt_action_param *p)
199 const struct xt_osf_info *info = p->matchinfo;
200 const struct iphdr *ip = ip_hdr(skb);
201 const struct tcphdr *tcp;
203 int fmatch = FMATCH_WRONG, fcount = 0;
204 unsigned int optsize = 0, check_WSS = 0;
205 u16 window, totlen, mss = 0;
207 const unsigned char *optp = NULL, *_optp = NULL;
208 unsigned char opts[MAX_IPOPTLEN];
209 const struct xt_osf_finger *kf;
210 const struct xt_osf_user_finger *f;
215 tcp = skb_header_pointer(skb, ip_hdrlen(skb), sizeof(struct tcphdr), &_tcph);
222 totlen = ntohs(ip->tot_len);
223 df = ntohs(ip->frag_off) & IP_DF;
224 window = ntohs(tcp->window);
226 if (tcp->doff * 4 > sizeof(struct tcphdr)) {
227 optsize = tcp->doff * 4 - sizeof(struct tcphdr);
229 _optp = optp = skb_header_pointer(skb, ip_hdrlen(skb) +
230 sizeof(struct tcphdr), optsize, opts);
234 list_for_each_entry_rcu(kf, &xt_osf_fingers[df], finger_entry) {
237 if (!(info->flags & XT_OSF_LOG) && strcmp(info->genre, f->genre))
241 fmatch = FMATCH_WRONG;
243 if (totlen == f->ss && xt_osf_ttl(skb, info, f->ttl)) {
244 int foptsize, optnum;
247 * Should not happen if userspace parser was written correctly.
249 if (f->wss.wc >= OSF_WSS_MAX)
255 for (optnum = 0; optnum < f->opt_num; ++optnum)
256 foptsize += f->opt[optnum].length;
258 if (foptsize > MAX_IPOPTLEN ||
259 optsize > MAX_IPOPTLEN ||
263 check_WSS = f->wss.wc;
265 for (optnum = 0; optnum < f->opt_num; ++optnum) {
266 if (f->opt[optnum].kind == (*optp)) {
267 __u32 len = f->opt[optnum].length;
268 const __u8 *optend = optp + len;
288 fmatch = FMATCH_OPT_WRONG;
290 if (fmatch != FMATCH_OK)
294 if (fmatch != FMATCH_OPT_WRONG) {
295 fmatch = FMATCH_WRONG;
299 if (f->wss.val == 0 || window == f->wss.val)
304 * Some smart modems decrease mangle MSS to
305 * SMART_MSS_2, so we check standard, decreased
306 * and the one provided in the fingerprint MSS
309 #define SMART_MSS_1 1460
310 #define SMART_MSS_2 1448
311 if (window == f->wss.val * mss ||
312 window == f->wss.val * SMART_MSS_1 ||
313 window == f->wss.val * SMART_MSS_2)
317 if (window == f->wss.val * (mss + 40) ||
318 window == f->wss.val * (SMART_MSS_1 + 40) ||
319 window == f->wss.val * (SMART_MSS_2 + 40))
323 if ((window % f->wss.val) == 0)
329 if (fmatch != FMATCH_OK)
334 if (info->flags & XT_OSF_LOG)
335 nf_log_packet(p->family, p->hooknum, skb,
337 "%s [%s:%s] : %pI4:%d -> %pI4:%d hops=%d\n",
338 f->genre, f->version, f->subtype,
339 &ip->saddr, ntohs(tcp->source),
340 &ip->daddr, ntohs(tcp->dest),
343 if ((info->flags & XT_OSF_LOG) &&
344 info->loglevel == XT_OSF_LOGLEVEL_FIRST)
350 if (!fcount && (info->flags & XT_OSF_LOG))
351 nf_log_packet(p->family, p->hooknum, skb, p->in, p->out, NULL,
352 "Remote OS is not known: %pI4:%u -> %pI4:%u\n",
353 &ip->saddr, ntohs(tcp->source),
354 &ip->daddr, ntohs(tcp->dest));
359 return fmatch == FMATCH_OK;
362 static struct xt_match xt_osf_match = {
365 .family = NFPROTO_IPV4,
366 .proto = IPPROTO_TCP,
367 .hooks = (1 << NF_INET_LOCAL_IN) |
368 (1 << NF_INET_PRE_ROUTING) |
369 (1 << NF_INET_FORWARD),
370 .match = xt_osf_match_packet,
371 .matchsize = sizeof(struct xt_osf_info),
375 static int __init xt_osf_init(void)
380 for (i=0; i<ARRAY_SIZE(xt_osf_fingers); ++i)
381 INIT_LIST_HEAD(&xt_osf_fingers[i]);
383 err = nfnetlink_subsys_register(&xt_osf_nfnetlink);
385 pr_err("Failed to register OSF nsfnetlink helper (%d)\n", err);
389 err = xt_register_match(&xt_osf_match);
391 pr_err("Failed to register OS fingerprint "
392 "matching module (%d)\n", err);
399 nfnetlink_subsys_unregister(&xt_osf_nfnetlink);
404 static void __exit xt_osf_fini(void)
406 struct xt_osf_finger *f;
409 nfnetlink_subsys_unregister(&xt_osf_nfnetlink);
410 xt_unregister_match(&xt_osf_match);
413 for (i=0; i<ARRAY_SIZE(xt_osf_fingers); ++i) {
415 list_for_each_entry_rcu(f, &xt_osf_fingers[i], finger_entry) {
416 list_del_rcu(&f->finger_entry);
417 call_rcu(&f->rcu_head, xt_osf_finger_free_rcu);
425 module_init(xt_osf_init);
426 module_exit(xt_osf_fini);
428 MODULE_LICENSE("GPL");
430 MODULE_DESCRIPTION("Passive OS fingerprint matching.");
431 MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_OSF);