nft_hash.c 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376
  1. /*
  2. * Copyright (c) 2016 Laura Garcia <nevola@gmail.com>
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. *
  8. */
  9. #include <linux/kernel.h>
  10. #include <linux/init.h>
  11. #include <linux/module.h>
  12. #include <linux/netlink.h>
  13. #include <linux/netfilter.h>
  14. #include <linux/netfilter/nf_tables.h>
  15. #include <net/netfilter/nf_tables.h>
  16. #include <net/netfilter/nf_tables_core.h>
  17. #include <linux/jhash.h>
  18. struct nft_jhash {
  19. enum nft_registers sreg:8;
  20. enum nft_registers dreg:8;
  21. u8 len;
  22. bool autogen_seed:1;
  23. u32 modulus;
  24. u32 seed;
  25. u32 offset;
  26. struct nft_set *map;
  27. };
  28. static void nft_jhash_eval(const struct nft_expr *expr,
  29. struct nft_regs *regs,
  30. const struct nft_pktinfo *pkt)
  31. {
  32. struct nft_jhash *priv = nft_expr_priv(expr);
  33. const void *data = &regs->data[priv->sreg];
  34. u32 h;
  35. h = reciprocal_scale(jhash(data, priv->len, priv->seed),
  36. priv->modulus);
  37. regs->data[priv->dreg] = h + priv->offset;
  38. }
  39. static void nft_jhash_map_eval(const struct nft_expr *expr,
  40. struct nft_regs *regs,
  41. const struct nft_pktinfo *pkt)
  42. {
  43. struct nft_jhash *priv = nft_expr_priv(expr);
  44. const void *data = &regs->data[priv->sreg];
  45. const struct nft_set *map = priv->map;
  46. const struct nft_set_ext *ext;
  47. u32 result;
  48. bool found;
  49. result = reciprocal_scale(jhash(data, priv->len, priv->seed),
  50. priv->modulus) + priv->offset;
  51. found = map->ops->lookup(nft_net(pkt), map, &result, &ext);
  52. if (!found)
  53. return;
  54. nft_data_copy(&regs->data[priv->dreg],
  55. nft_set_ext_data(ext), map->dlen);
  56. }
  57. struct nft_symhash {
  58. enum nft_registers dreg:8;
  59. u32 modulus;
  60. u32 offset;
  61. struct nft_set *map;
  62. };
  63. static void nft_symhash_eval(const struct nft_expr *expr,
  64. struct nft_regs *regs,
  65. const struct nft_pktinfo *pkt)
  66. {
  67. struct nft_symhash *priv = nft_expr_priv(expr);
  68. struct sk_buff *skb = pkt->skb;
  69. u32 h;
  70. h = reciprocal_scale(__skb_get_hash_symmetric(skb), priv->modulus);
  71. regs->data[priv->dreg] = h + priv->offset;
  72. }
  73. static void nft_symhash_map_eval(const struct nft_expr *expr,
  74. struct nft_regs *regs,
  75. const struct nft_pktinfo *pkt)
  76. {
  77. struct nft_symhash *priv = nft_expr_priv(expr);
  78. struct sk_buff *skb = pkt->skb;
  79. const struct nft_set *map = priv->map;
  80. const struct nft_set_ext *ext;
  81. u32 result;
  82. bool found;
  83. result = reciprocal_scale(__skb_get_hash_symmetric(skb),
  84. priv->modulus) + priv->offset;
  85. found = map->ops->lookup(nft_net(pkt), map, &result, &ext);
  86. if (!found)
  87. return;
  88. nft_data_copy(&regs->data[priv->dreg],
  89. nft_set_ext_data(ext), map->dlen);
  90. }
  91. static const struct nla_policy nft_hash_policy[NFTA_HASH_MAX + 1] = {
  92. [NFTA_HASH_SREG] = { .type = NLA_U32 },
  93. [NFTA_HASH_DREG] = { .type = NLA_U32 },
  94. [NFTA_HASH_LEN] = { .type = NLA_U32 },
  95. [NFTA_HASH_MODULUS] = { .type = NLA_U32 },
  96. [NFTA_HASH_SEED] = { .type = NLA_U32 },
  97. [NFTA_HASH_OFFSET] = { .type = NLA_U32 },
  98. [NFTA_HASH_TYPE] = { .type = NLA_U32 },
  99. [NFTA_HASH_SET_NAME] = { .type = NLA_STRING,
  100. .len = NFT_SET_MAXNAMELEN - 1 },
  101. [NFTA_HASH_SET_ID] = { .type = NLA_U32 },
  102. };
  103. static int nft_jhash_init(const struct nft_ctx *ctx,
  104. const struct nft_expr *expr,
  105. const struct nlattr * const tb[])
  106. {
  107. struct nft_jhash *priv = nft_expr_priv(expr);
  108. u32 len;
  109. int err;
  110. if (!tb[NFTA_HASH_SREG] ||
  111. !tb[NFTA_HASH_DREG] ||
  112. !tb[NFTA_HASH_LEN] ||
  113. !tb[NFTA_HASH_MODULUS])
  114. return -EINVAL;
  115. if (tb[NFTA_HASH_OFFSET])
  116. priv->offset = ntohl(nla_get_be32(tb[NFTA_HASH_OFFSET]));
  117. priv->sreg = nft_parse_register(tb[NFTA_HASH_SREG]);
  118. priv->dreg = nft_parse_register(tb[NFTA_HASH_DREG]);
  119. err = nft_parse_u32_check(tb[NFTA_HASH_LEN], U8_MAX, &len);
  120. if (err < 0)
  121. return err;
  122. if (len == 0)
  123. return -ERANGE;
  124. priv->len = len;
  125. priv->modulus = ntohl(nla_get_be32(tb[NFTA_HASH_MODULUS]));
  126. if (priv->modulus < 1)
  127. return -ERANGE;
  128. if (priv->offset + priv->modulus - 1 < priv->offset)
  129. return -EOVERFLOW;
  130. if (tb[NFTA_HASH_SEED]) {
  131. priv->seed = ntohl(nla_get_be32(tb[NFTA_HASH_SEED]));
  132. } else {
  133. priv->autogen_seed = true;
  134. get_random_bytes(&priv->seed, sizeof(priv->seed));
  135. }
  136. return nft_validate_register_load(priv->sreg, len) &&
  137. nft_validate_register_store(ctx, priv->dreg, NULL,
  138. NFT_DATA_VALUE, sizeof(u32));
  139. }
  140. static int nft_jhash_map_init(const struct nft_ctx *ctx,
  141. const struct nft_expr *expr,
  142. const struct nlattr * const tb[])
  143. {
  144. struct nft_jhash *priv = nft_expr_priv(expr);
  145. u8 genmask = nft_genmask_next(ctx->net);
  146. nft_jhash_init(ctx, expr, tb);
  147. priv->map = nft_set_lookup_global(ctx->net, ctx->table,
  148. tb[NFTA_HASH_SET_NAME],
  149. tb[NFTA_HASH_SET_ID], genmask);
  150. return PTR_ERR_OR_ZERO(priv->map);
  151. }
  152. static int nft_symhash_init(const struct nft_ctx *ctx,
  153. const struct nft_expr *expr,
  154. const struct nlattr * const tb[])
  155. {
  156. struct nft_symhash *priv = nft_expr_priv(expr);
  157. if (!tb[NFTA_HASH_DREG] ||
  158. !tb[NFTA_HASH_MODULUS])
  159. return -EINVAL;
  160. if (tb[NFTA_HASH_OFFSET])
  161. priv->offset = ntohl(nla_get_be32(tb[NFTA_HASH_OFFSET]));
  162. priv->dreg = nft_parse_register(tb[NFTA_HASH_DREG]);
  163. priv->modulus = ntohl(nla_get_be32(tb[NFTA_HASH_MODULUS]));
  164. if (priv->modulus < 1)
  165. return -ERANGE;
  166. if (priv->offset + priv->modulus - 1 < priv->offset)
  167. return -EOVERFLOW;
  168. return nft_validate_register_store(ctx, priv->dreg, NULL,
  169. NFT_DATA_VALUE, sizeof(u32));
  170. }
  171. static int nft_symhash_map_init(const struct nft_ctx *ctx,
  172. const struct nft_expr *expr,
  173. const struct nlattr * const tb[])
  174. {
  175. struct nft_jhash *priv = nft_expr_priv(expr);
  176. u8 genmask = nft_genmask_next(ctx->net);
  177. nft_symhash_init(ctx, expr, tb);
  178. priv->map = nft_set_lookup_global(ctx->net, ctx->table,
  179. tb[NFTA_HASH_SET_NAME],
  180. tb[NFTA_HASH_SET_ID], genmask);
  181. return PTR_ERR_OR_ZERO(priv->map);
  182. }
  183. static int nft_jhash_dump(struct sk_buff *skb,
  184. const struct nft_expr *expr)
  185. {
  186. const struct nft_jhash *priv = nft_expr_priv(expr);
  187. if (nft_dump_register(skb, NFTA_HASH_SREG, priv->sreg))
  188. goto nla_put_failure;
  189. if (nft_dump_register(skb, NFTA_HASH_DREG, priv->dreg))
  190. goto nla_put_failure;
  191. if (nla_put_be32(skb, NFTA_HASH_LEN, htonl(priv->len)))
  192. goto nla_put_failure;
  193. if (nla_put_be32(skb, NFTA_HASH_MODULUS, htonl(priv->modulus)))
  194. goto nla_put_failure;
  195. if (!priv->autogen_seed &&
  196. nla_put_be32(skb, NFTA_HASH_SEED, htonl(priv->seed)))
  197. goto nla_put_failure;
  198. if (priv->offset != 0)
  199. if (nla_put_be32(skb, NFTA_HASH_OFFSET, htonl(priv->offset)))
  200. goto nla_put_failure;
  201. if (nla_put_be32(skb, NFTA_HASH_TYPE, htonl(NFT_HASH_JENKINS)))
  202. goto nla_put_failure;
  203. return 0;
  204. nla_put_failure:
  205. return -1;
  206. }
  207. static int nft_jhash_map_dump(struct sk_buff *skb,
  208. const struct nft_expr *expr)
  209. {
  210. const struct nft_jhash *priv = nft_expr_priv(expr);
  211. if (nft_jhash_dump(skb, expr) ||
  212. nla_put_string(skb, NFTA_HASH_SET_NAME, priv->map->name))
  213. return -1;
  214. return 0;
  215. }
  216. static int nft_symhash_dump(struct sk_buff *skb,
  217. const struct nft_expr *expr)
  218. {
  219. const struct nft_symhash *priv = nft_expr_priv(expr);
  220. if (nft_dump_register(skb, NFTA_HASH_DREG, priv->dreg))
  221. goto nla_put_failure;
  222. if (nla_put_be32(skb, NFTA_HASH_MODULUS, htonl(priv->modulus)))
  223. goto nla_put_failure;
  224. if (priv->offset != 0)
  225. if (nla_put_be32(skb, NFTA_HASH_OFFSET, htonl(priv->offset)))
  226. goto nla_put_failure;
  227. if (nla_put_be32(skb, NFTA_HASH_TYPE, htonl(NFT_HASH_SYM)))
  228. goto nla_put_failure;
  229. return 0;
  230. nla_put_failure:
  231. return -1;
  232. }
  233. static int nft_symhash_map_dump(struct sk_buff *skb,
  234. const struct nft_expr *expr)
  235. {
  236. const struct nft_symhash *priv = nft_expr_priv(expr);
  237. if (nft_symhash_dump(skb, expr) ||
  238. nla_put_string(skb, NFTA_HASH_SET_NAME, priv->map->name))
  239. return -1;
  240. return 0;
  241. }
  242. static struct nft_expr_type nft_hash_type;
  243. static const struct nft_expr_ops nft_jhash_ops = {
  244. .type = &nft_hash_type,
  245. .size = NFT_EXPR_SIZE(sizeof(struct nft_jhash)),
  246. .eval = nft_jhash_eval,
  247. .init = nft_jhash_init,
  248. .dump = nft_jhash_dump,
  249. };
  250. static const struct nft_expr_ops nft_jhash_map_ops = {
  251. .type = &nft_hash_type,
  252. .size = NFT_EXPR_SIZE(sizeof(struct nft_jhash)),
  253. .eval = nft_jhash_map_eval,
  254. .init = nft_jhash_map_init,
  255. .dump = nft_jhash_map_dump,
  256. };
  257. static const struct nft_expr_ops nft_symhash_ops = {
  258. .type = &nft_hash_type,
  259. .size = NFT_EXPR_SIZE(sizeof(struct nft_symhash)),
  260. .eval = nft_symhash_eval,
  261. .init = nft_symhash_init,
  262. .dump = nft_symhash_dump,
  263. };
  264. static const struct nft_expr_ops nft_symhash_map_ops = {
  265. .type = &nft_hash_type,
  266. .size = NFT_EXPR_SIZE(sizeof(struct nft_symhash)),
  267. .eval = nft_symhash_map_eval,
  268. .init = nft_symhash_map_init,
  269. .dump = nft_symhash_map_dump,
  270. };
  271. static const struct nft_expr_ops *
  272. nft_hash_select_ops(const struct nft_ctx *ctx,
  273. const struct nlattr * const tb[])
  274. {
  275. u32 type;
  276. if (!tb[NFTA_HASH_TYPE])
  277. return &nft_jhash_ops;
  278. type = ntohl(nla_get_be32(tb[NFTA_HASH_TYPE]));
  279. switch (type) {
  280. case NFT_HASH_SYM:
  281. if (tb[NFTA_HASH_SET_NAME])
  282. return &nft_symhash_map_ops;
  283. return &nft_symhash_ops;
  284. case NFT_HASH_JENKINS:
  285. if (tb[NFTA_HASH_SET_NAME])
  286. return &nft_jhash_map_ops;
  287. return &nft_jhash_ops;
  288. default:
  289. break;
  290. }
  291. return ERR_PTR(-EOPNOTSUPP);
  292. }
  293. static struct nft_expr_type nft_hash_type __read_mostly = {
  294. .name = "hash",
  295. .select_ops = nft_hash_select_ops,
  296. .policy = nft_hash_policy,
  297. .maxattr = NFTA_HASH_MAX,
  298. .owner = THIS_MODULE,
  299. };
  300. static int __init nft_hash_module_init(void)
  301. {
  302. return nft_register_expr(&nft_hash_type);
  303. }
  304. static void __exit nft_hash_module_exit(void)
  305. {
  306. nft_unregister_expr(&nft_hash_type);
  307. }
  308. module_init(nft_hash_module_init);
  309. module_exit(nft_hash_module_exit);
  310. MODULE_LICENSE("GPL");
  311. MODULE_AUTHOR("Laura Garcia <nevola@gmail.com>");
  312. MODULE_ALIAS_NFT_EXPR("hash");