nfnetlink_osf.c 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441
  1. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  2. #include <linux/module.h>
  3. #include <linux/kernel.h>
  4. #include <linux/capability.h>
  5. #include <linux/if.h>
  6. #include <linux/inetdevice.h>
  7. #include <linux/ip.h>
  8. #include <linux/list.h>
  9. #include <linux/rculist.h>
  10. #include <linux/skbuff.h>
  11. #include <linux/slab.h>
  12. #include <linux/tcp.h>
  13. #include <net/ip.h>
  14. #include <net/tcp.h>
  15. #include <linux/netfilter/nfnetlink.h>
  16. #include <linux/netfilter/x_tables.h>
  17. #include <net/netfilter/nf_log.h>
  18. #include <linux/netfilter/nfnetlink_osf.h>
  19. /*
  20. * Indexed by dont-fragment bit.
  21. * It is the only constant value in the fingerprint.
  22. */
  23. struct list_head nf_osf_fingers[2];
  24. EXPORT_SYMBOL_GPL(nf_osf_fingers);
  25. static inline int nf_osf_ttl(const struct sk_buff *skb,
  26. int ttl_check, unsigned char f_ttl)
  27. {
  28. const struct iphdr *ip = ip_hdr(skb);
  29. if (ttl_check != -1) {
  30. if (ttl_check == NF_OSF_TTL_TRUE)
  31. return ip->ttl == f_ttl;
  32. if (ttl_check == NF_OSF_TTL_NOCHECK)
  33. return 1;
  34. else if (ip->ttl <= f_ttl)
  35. return 1;
  36. else {
  37. struct in_device *in_dev = __in_dev_get_rcu(skb->dev);
  38. int ret = 0;
  39. for_ifa(in_dev) {
  40. if (inet_ifa_match(ip->saddr, ifa)) {
  41. ret = (ip->ttl == f_ttl);
  42. break;
  43. }
  44. }
  45. endfor_ifa(in_dev);
  46. return ret;
  47. }
  48. }
  49. return ip->ttl == f_ttl;
  50. }
  51. struct nf_osf_hdr_ctx {
  52. bool df;
  53. u16 window;
  54. u16 totlen;
  55. const unsigned char *optp;
  56. unsigned int optsize;
  57. };
  58. static bool nf_osf_match_one(const struct sk_buff *skb,
  59. const struct nf_osf_user_finger *f,
  60. int ttl_check,
  61. struct nf_osf_hdr_ctx *ctx)
  62. {
  63. const __u8 *optpinit = ctx->optp;
  64. unsigned int check_WSS = 0;
  65. int fmatch = FMATCH_WRONG;
  66. int foptsize, optnum;
  67. u16 mss = 0;
  68. if (ctx->totlen != f->ss || !nf_osf_ttl(skb, ttl_check, f->ttl))
  69. return false;
  70. /*
  71. * Should not happen if userspace parser was written correctly.
  72. */
  73. if (f->wss.wc >= OSF_WSS_MAX)
  74. return false;
  75. /* Check options */
  76. foptsize = 0;
  77. for (optnum = 0; optnum < f->opt_num; ++optnum)
  78. foptsize += f->opt[optnum].length;
  79. if (foptsize > MAX_IPOPTLEN ||
  80. ctx->optsize > MAX_IPOPTLEN ||
  81. ctx->optsize != foptsize)
  82. return false;
  83. check_WSS = f->wss.wc;
  84. for (optnum = 0; optnum < f->opt_num; ++optnum) {
  85. if (f->opt[optnum].kind == *ctx->optp) {
  86. __u32 len = f->opt[optnum].length;
  87. const __u8 *optend = ctx->optp + len;
  88. fmatch = FMATCH_OK;
  89. switch (*ctx->optp) {
  90. case OSFOPT_MSS:
  91. mss = ctx->optp[3];
  92. mss <<= 8;
  93. mss |= ctx->optp[2];
  94. mss = ntohs((__force __be16)mss);
  95. break;
  96. case OSFOPT_TS:
  97. break;
  98. }
  99. ctx->optp = optend;
  100. } else
  101. fmatch = FMATCH_OPT_WRONG;
  102. if (fmatch != FMATCH_OK)
  103. break;
  104. }
  105. if (fmatch != FMATCH_OPT_WRONG) {
  106. fmatch = FMATCH_WRONG;
  107. switch (check_WSS) {
  108. case OSF_WSS_PLAIN:
  109. if (f->wss.val == 0 || ctx->window == f->wss.val)
  110. fmatch = FMATCH_OK;
  111. break;
  112. case OSF_WSS_MSS:
  113. /*
  114. * Some smart modems decrease mangle MSS to
  115. * SMART_MSS_2, so we check standard, decreased
  116. * and the one provided in the fingerprint MSS
  117. * values.
  118. */
  119. #define SMART_MSS_1 1460
  120. #define SMART_MSS_2 1448
  121. if (ctx->window == f->wss.val * mss ||
  122. ctx->window == f->wss.val * SMART_MSS_1 ||
  123. ctx->window == f->wss.val * SMART_MSS_2)
  124. fmatch = FMATCH_OK;
  125. break;
  126. case OSF_WSS_MTU:
  127. if (ctx->window == f->wss.val * (mss + 40) ||
  128. ctx->window == f->wss.val * (SMART_MSS_1 + 40) ||
  129. ctx->window == f->wss.val * (SMART_MSS_2 + 40))
  130. fmatch = FMATCH_OK;
  131. break;
  132. case OSF_WSS_MODULO:
  133. if ((ctx->window % f->wss.val) == 0)
  134. fmatch = FMATCH_OK;
  135. break;
  136. }
  137. }
  138. if (fmatch != FMATCH_OK)
  139. ctx->optp = optpinit;
  140. return fmatch == FMATCH_OK;
  141. }
  142. static const struct tcphdr *nf_osf_hdr_ctx_init(struct nf_osf_hdr_ctx *ctx,
  143. const struct sk_buff *skb,
  144. const struct iphdr *ip,
  145. unsigned char *opts)
  146. {
  147. const struct tcphdr *tcp;
  148. struct tcphdr _tcph;
  149. tcp = skb_header_pointer(skb, ip_hdrlen(skb), sizeof(struct tcphdr), &_tcph);
  150. if (!tcp)
  151. return NULL;
  152. if (!tcp->syn)
  153. return NULL;
  154. ctx->totlen = ntohs(ip->tot_len);
  155. ctx->df = ntohs(ip->frag_off) & IP_DF;
  156. ctx->window = ntohs(tcp->window);
  157. if (tcp->doff * 4 > sizeof(struct tcphdr)) {
  158. ctx->optsize = tcp->doff * 4 - sizeof(struct tcphdr);
  159. ctx->optp = skb_header_pointer(skb, ip_hdrlen(skb) +
  160. sizeof(struct tcphdr), ctx->optsize, opts);
  161. }
  162. return tcp;
  163. }
  164. bool
  165. nf_osf_match(const struct sk_buff *skb, u_int8_t family,
  166. int hooknum, struct net_device *in, struct net_device *out,
  167. const struct nf_osf_info *info, struct net *net,
  168. const struct list_head *nf_osf_fingers)
  169. {
  170. const struct iphdr *ip = ip_hdr(skb);
  171. const struct nf_osf_user_finger *f;
  172. unsigned char opts[MAX_IPOPTLEN];
  173. const struct nf_osf_finger *kf;
  174. int fcount = 0, ttl_check;
  175. int fmatch = FMATCH_WRONG;
  176. struct nf_osf_hdr_ctx ctx;
  177. const struct tcphdr *tcp;
  178. memset(&ctx, 0, sizeof(ctx));
  179. tcp = nf_osf_hdr_ctx_init(&ctx, skb, ip, opts);
  180. if (!tcp)
  181. return false;
  182. ttl_check = (info->flags & NF_OSF_TTL) ? info->ttl : -1;
  183. list_for_each_entry_rcu(kf, &nf_osf_fingers[ctx.df], finger_entry) {
  184. f = &kf->finger;
  185. if (!(info->flags & NF_OSF_LOG) && strcmp(info->genre, f->genre))
  186. continue;
  187. if (!nf_osf_match_one(skb, f, ttl_check, &ctx))
  188. continue;
  189. fmatch = FMATCH_OK;
  190. fcount++;
  191. if (info->flags & NF_OSF_LOG)
  192. nf_log_packet(net, family, hooknum, skb,
  193. in, out, NULL,
  194. "%s [%s:%s] : %pI4:%d -> %pI4:%d hops=%d\n",
  195. f->genre, f->version, f->subtype,
  196. &ip->saddr, ntohs(tcp->source),
  197. &ip->daddr, ntohs(tcp->dest),
  198. f->ttl - ip->ttl);
  199. if ((info->flags & NF_OSF_LOG) &&
  200. info->loglevel == NF_OSF_LOGLEVEL_FIRST)
  201. break;
  202. }
  203. if (!fcount && (info->flags & NF_OSF_LOG))
  204. nf_log_packet(net, family, hooknum, skb, in, out, NULL,
  205. "Remote OS is not known: %pI4:%u -> %pI4:%u\n",
  206. &ip->saddr, ntohs(tcp->source),
  207. &ip->daddr, ntohs(tcp->dest));
  208. if (fcount)
  209. fmatch = FMATCH_OK;
  210. return fmatch == FMATCH_OK;
  211. }
  212. EXPORT_SYMBOL_GPL(nf_osf_match);
  213. const char *nf_osf_find(const struct sk_buff *skb,
  214. const struct list_head *nf_osf_fingers)
  215. {
  216. const struct iphdr *ip = ip_hdr(skb);
  217. const struct nf_osf_user_finger *f;
  218. unsigned char opts[MAX_IPOPTLEN];
  219. const struct nf_osf_finger *kf;
  220. struct nf_osf_hdr_ctx ctx;
  221. const struct tcphdr *tcp;
  222. const char *genre = NULL;
  223. memset(&ctx, 0, sizeof(ctx));
  224. tcp = nf_osf_hdr_ctx_init(&ctx, skb, ip, opts);
  225. if (!tcp)
  226. return NULL;
  227. list_for_each_entry_rcu(kf, &nf_osf_fingers[ctx.df], finger_entry) {
  228. f = &kf->finger;
  229. if (!nf_osf_match_one(skb, f, -1, &ctx))
  230. continue;
  231. genre = f->genre;
  232. break;
  233. }
  234. return genre;
  235. }
  236. EXPORT_SYMBOL_GPL(nf_osf_find);
  237. static const struct nla_policy nfnl_osf_policy[OSF_ATTR_MAX + 1] = {
  238. [OSF_ATTR_FINGER] = { .len = sizeof(struct nf_osf_user_finger) },
  239. };
  240. static int nfnl_osf_add_callback(struct net *net, struct sock *ctnl,
  241. struct sk_buff *skb, const struct nlmsghdr *nlh,
  242. const struct nlattr * const osf_attrs[],
  243. struct netlink_ext_ack *extack)
  244. {
  245. struct nf_osf_user_finger *f;
  246. struct nf_osf_finger *kf = NULL, *sf;
  247. int err = 0;
  248. if (!capable(CAP_NET_ADMIN))
  249. return -EPERM;
  250. if (!osf_attrs[OSF_ATTR_FINGER])
  251. return -EINVAL;
  252. if (!(nlh->nlmsg_flags & NLM_F_CREATE))
  253. return -EINVAL;
  254. f = nla_data(osf_attrs[OSF_ATTR_FINGER]);
  255. kf = kmalloc(sizeof(struct nf_osf_finger), GFP_KERNEL);
  256. if (!kf)
  257. return -ENOMEM;
  258. memcpy(&kf->finger, f, sizeof(struct nf_osf_user_finger));
  259. list_for_each_entry(sf, &nf_osf_fingers[!!f->df], finger_entry) {
  260. if (memcmp(&sf->finger, f, sizeof(struct nf_osf_user_finger)))
  261. continue;
  262. kfree(kf);
  263. kf = NULL;
  264. if (nlh->nlmsg_flags & NLM_F_EXCL)
  265. err = -EEXIST;
  266. break;
  267. }
  268. /*
  269. * We are protected by nfnl mutex.
  270. */
  271. if (kf)
  272. list_add_tail_rcu(&kf->finger_entry, &nf_osf_fingers[!!f->df]);
  273. return err;
  274. }
  275. static int nfnl_osf_remove_callback(struct net *net, struct sock *ctnl,
  276. struct sk_buff *skb,
  277. const struct nlmsghdr *nlh,
  278. const struct nlattr * const osf_attrs[],
  279. struct netlink_ext_ack *extack)
  280. {
  281. struct nf_osf_user_finger *f;
  282. struct nf_osf_finger *sf;
  283. int err = -ENOENT;
  284. if (!capable(CAP_NET_ADMIN))
  285. return -EPERM;
  286. if (!osf_attrs[OSF_ATTR_FINGER])
  287. return -EINVAL;
  288. f = nla_data(osf_attrs[OSF_ATTR_FINGER]);
  289. list_for_each_entry(sf, &nf_osf_fingers[!!f->df], finger_entry) {
  290. if (memcmp(&sf->finger, f, sizeof(struct nf_osf_user_finger)))
  291. continue;
  292. /*
  293. * We are protected by nfnl mutex.
  294. */
  295. list_del_rcu(&sf->finger_entry);
  296. kfree_rcu(sf, rcu_head);
  297. err = 0;
  298. break;
  299. }
  300. return err;
  301. }
  302. static const struct nfnl_callback nfnl_osf_callbacks[OSF_MSG_MAX] = {
  303. [OSF_MSG_ADD] = {
  304. .call = nfnl_osf_add_callback,
  305. .attr_count = OSF_ATTR_MAX,
  306. .policy = nfnl_osf_policy,
  307. },
  308. [OSF_MSG_REMOVE] = {
  309. .call = nfnl_osf_remove_callback,
  310. .attr_count = OSF_ATTR_MAX,
  311. .policy = nfnl_osf_policy,
  312. },
  313. };
  314. static const struct nfnetlink_subsystem nfnl_osf_subsys = {
  315. .name = "osf",
  316. .subsys_id = NFNL_SUBSYS_OSF,
  317. .cb_count = OSF_MSG_MAX,
  318. .cb = nfnl_osf_callbacks,
  319. };
  320. static int __init nfnl_osf_init(void)
  321. {
  322. int err = -EINVAL;
  323. int i;
  324. for (i = 0; i < ARRAY_SIZE(nf_osf_fingers); ++i)
  325. INIT_LIST_HEAD(&nf_osf_fingers[i]);
  326. err = nfnetlink_subsys_register(&nfnl_osf_subsys);
  327. if (err < 0) {
  328. pr_err("Failed to register OSF nsfnetlink helper (%d)\n", err);
  329. goto err_out_exit;
  330. }
  331. return 0;
  332. err_out_exit:
  333. return err;
  334. }
  335. static void __exit nfnl_osf_fini(void)
  336. {
  337. struct nf_osf_finger *f;
  338. int i;
  339. nfnetlink_subsys_unregister(&nfnl_osf_subsys);
  340. rcu_read_lock();
  341. for (i = 0; i < ARRAY_SIZE(nf_osf_fingers); ++i) {
  342. list_for_each_entry_rcu(f, &nf_osf_fingers[i], finger_entry) {
  343. list_del_rcu(&f->finger_entry);
  344. kfree_rcu(f, rcu_head);
  345. }
  346. }
  347. rcu_read_unlock();
  348. rcu_barrier();
  349. }
  350. module_init(nfnl_osf_init);
  351. module_exit(nfnl_osf_fini);
  352. MODULE_LICENSE("GPL");