nft_connlimit.c 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #include <linux/kernel.h>
  3. #include <linux/init.h>
  4. #include <linux/module.h>
  5. #include <linux/spinlock.h>
  6. #include <linux/netlink.h>
  7. #include <linux/netfilter.h>
  8. #include <linux/netfilter/nf_tables.h>
  9. #include <net/netfilter/nf_tables.h>
  10. #include <net/netfilter/nf_conntrack.h>
  11. #include <net/netfilter/nf_conntrack_count.h>
  12. #include <net/netfilter/nf_conntrack_core.h>
  13. #include <net/netfilter/nf_conntrack_tuple.h>
  14. #include <net/netfilter/nf_conntrack_zones.h>
  15. struct nft_connlimit {
  16. struct nf_conncount_list list;
  17. u32 limit;
  18. bool invert;
  19. };
  20. static inline void nft_connlimit_do_eval(struct nft_connlimit *priv,
  21. struct nft_regs *regs,
  22. const struct nft_pktinfo *pkt,
  23. const struct nft_set_ext *ext)
  24. {
  25. const struct nf_conntrack_zone *zone = &nf_ct_zone_dflt;
  26. const struct nf_conntrack_tuple *tuple_ptr;
  27. struct nf_conntrack_tuple tuple;
  28. enum ip_conntrack_info ctinfo;
  29. const struct nf_conn *ct;
  30. unsigned int count;
  31. tuple_ptr = &tuple;
  32. ct = nf_ct_get(pkt->skb, &ctinfo);
  33. if (ct != NULL) {
  34. tuple_ptr = &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple;
  35. zone = nf_ct_zone(ct);
  36. } else if (!nf_ct_get_tuplepr(pkt->skb, skb_network_offset(pkt->skb),
  37. nft_pf(pkt), nft_net(pkt), &tuple)) {
  38. regs->verdict.code = NF_DROP;
  39. return;
  40. }
  41. if (nf_conncount_add(nft_net(pkt), &priv->list, tuple_ptr, zone)) {
  42. regs->verdict.code = NF_DROP;
  43. return;
  44. }
  45. count = priv->list.count;
  46. if ((count > priv->limit) ^ priv->invert) {
  47. regs->verdict.code = NFT_BREAK;
  48. return;
  49. }
  50. }
  51. static int nft_connlimit_do_init(const struct nft_ctx *ctx,
  52. const struct nlattr * const tb[],
  53. struct nft_connlimit *priv)
  54. {
  55. bool invert = false;
  56. u32 flags, limit;
  57. if (!tb[NFTA_CONNLIMIT_COUNT])
  58. return -EINVAL;
  59. limit = ntohl(nla_get_be32(tb[NFTA_CONNLIMIT_COUNT]));
  60. if (tb[NFTA_CONNLIMIT_FLAGS]) {
  61. flags = ntohl(nla_get_be32(tb[NFTA_CONNLIMIT_FLAGS]));
  62. if (flags & ~NFT_CONNLIMIT_F_INV)
  63. return -EOPNOTSUPP;
  64. if (flags & NFT_CONNLIMIT_F_INV)
  65. invert = true;
  66. }
  67. nf_conncount_list_init(&priv->list);
  68. priv->limit = limit;
  69. priv->invert = invert;
  70. return nf_ct_netns_get(ctx->net, ctx->family);
  71. }
  72. static void nft_connlimit_do_destroy(const struct nft_ctx *ctx,
  73. struct nft_connlimit *priv)
  74. {
  75. nf_ct_netns_put(ctx->net, ctx->family);
  76. nf_conncount_cache_free(&priv->list);
  77. }
  78. static int nft_connlimit_do_dump(struct sk_buff *skb,
  79. struct nft_connlimit *priv)
  80. {
  81. if (nla_put_be32(skb, NFTA_CONNLIMIT_COUNT, htonl(priv->limit)))
  82. goto nla_put_failure;
  83. if (priv->invert &&
  84. nla_put_be32(skb, NFTA_CONNLIMIT_FLAGS, htonl(NFT_CONNLIMIT_F_INV)))
  85. goto nla_put_failure;
  86. return 0;
  87. nla_put_failure:
  88. return -1;
  89. }
  90. static inline void nft_connlimit_obj_eval(struct nft_object *obj,
  91. struct nft_regs *regs,
  92. const struct nft_pktinfo *pkt)
  93. {
  94. struct nft_connlimit *priv = nft_obj_data(obj);
  95. nft_connlimit_do_eval(priv, regs, pkt, NULL);
  96. }
  97. static int nft_connlimit_obj_init(const struct nft_ctx *ctx,
  98. const struct nlattr * const tb[],
  99. struct nft_object *obj)
  100. {
  101. struct nft_connlimit *priv = nft_obj_data(obj);
  102. return nft_connlimit_do_init(ctx, tb, priv);
  103. }
  104. static void nft_connlimit_obj_destroy(const struct nft_ctx *ctx,
  105. struct nft_object *obj)
  106. {
  107. struct nft_connlimit *priv = nft_obj_data(obj);
  108. nft_connlimit_do_destroy(ctx, priv);
  109. }
  110. static int nft_connlimit_obj_dump(struct sk_buff *skb,
  111. struct nft_object *obj, bool reset)
  112. {
  113. struct nft_connlimit *priv = nft_obj_data(obj);
  114. return nft_connlimit_do_dump(skb, priv);
  115. }
  116. static const struct nla_policy nft_connlimit_policy[NFTA_CONNLIMIT_MAX + 1] = {
  117. [NFTA_CONNLIMIT_COUNT] = { .type = NLA_U32 },
  118. [NFTA_CONNLIMIT_FLAGS] = { .type = NLA_U32 },
  119. };
  120. static struct nft_object_type nft_connlimit_obj_type;
  121. static const struct nft_object_ops nft_connlimit_obj_ops = {
  122. .type = &nft_connlimit_obj_type,
  123. .size = sizeof(struct nft_connlimit),
  124. .eval = nft_connlimit_obj_eval,
  125. .init = nft_connlimit_obj_init,
  126. .destroy = nft_connlimit_obj_destroy,
  127. .dump = nft_connlimit_obj_dump,
  128. };
  129. static struct nft_object_type nft_connlimit_obj_type __read_mostly = {
  130. .type = NFT_OBJECT_CONNLIMIT,
  131. .ops = &nft_connlimit_obj_ops,
  132. .maxattr = NFTA_CONNLIMIT_MAX,
  133. .policy = nft_connlimit_policy,
  134. .owner = THIS_MODULE,
  135. };
  136. static void nft_connlimit_eval(const struct nft_expr *expr,
  137. struct nft_regs *regs,
  138. const struct nft_pktinfo *pkt)
  139. {
  140. struct nft_connlimit *priv = nft_expr_priv(expr);
  141. nft_connlimit_do_eval(priv, regs, pkt, NULL);
  142. }
  143. static int nft_connlimit_dump(struct sk_buff *skb, const struct nft_expr *expr)
  144. {
  145. struct nft_connlimit *priv = nft_expr_priv(expr);
  146. return nft_connlimit_do_dump(skb, priv);
  147. }
  148. static int nft_connlimit_init(const struct nft_ctx *ctx,
  149. const struct nft_expr *expr,
  150. const struct nlattr * const tb[])
  151. {
  152. struct nft_connlimit *priv = nft_expr_priv(expr);
  153. return nft_connlimit_do_init(ctx, tb, priv);
  154. }
  155. static void nft_connlimit_destroy(const struct nft_ctx *ctx,
  156. const struct nft_expr *expr)
  157. {
  158. struct nft_connlimit *priv = nft_expr_priv(expr);
  159. nft_connlimit_do_destroy(ctx, priv);
  160. }
  161. static int nft_connlimit_clone(struct nft_expr *dst, const struct nft_expr *src)
  162. {
  163. struct nft_connlimit *priv_dst = nft_expr_priv(dst);
  164. struct nft_connlimit *priv_src = nft_expr_priv(src);
  165. nf_conncount_list_init(&priv_dst->list);
  166. priv_dst->limit = priv_src->limit;
  167. priv_dst->invert = priv_src->invert;
  168. return 0;
  169. }
  170. static void nft_connlimit_destroy_clone(const struct nft_ctx *ctx,
  171. const struct nft_expr *expr)
  172. {
  173. struct nft_connlimit *priv = nft_expr_priv(expr);
  174. nf_conncount_cache_free(&priv->list);
  175. }
  176. static bool nft_connlimit_gc(struct net *net, const struct nft_expr *expr)
  177. {
  178. struct nft_connlimit *priv = nft_expr_priv(expr);
  179. bool ret;
  180. local_bh_disable();
  181. ret = nf_conncount_gc_list(net, &priv->list);
  182. local_bh_enable();
  183. return ret;
  184. }
  185. static struct nft_expr_type nft_connlimit_type;
  186. static const struct nft_expr_ops nft_connlimit_ops = {
  187. .type = &nft_connlimit_type,
  188. .size = NFT_EXPR_SIZE(sizeof(struct nft_connlimit)),
  189. .eval = nft_connlimit_eval,
  190. .init = nft_connlimit_init,
  191. .destroy = nft_connlimit_destroy,
  192. .clone = nft_connlimit_clone,
  193. .destroy_clone = nft_connlimit_destroy_clone,
  194. .dump = nft_connlimit_dump,
  195. .gc = nft_connlimit_gc,
  196. };
  197. static struct nft_expr_type nft_connlimit_type __read_mostly = {
  198. .name = "connlimit",
  199. .ops = &nft_connlimit_ops,
  200. .policy = nft_connlimit_policy,
  201. .maxattr = NFTA_CONNLIMIT_MAX,
  202. .flags = NFT_EXPR_STATEFUL | NFT_EXPR_GC,
  203. .owner = THIS_MODULE,
  204. };
  205. static int __init nft_connlimit_module_init(void)
  206. {
  207. int err;
  208. err = nft_register_obj(&nft_connlimit_obj_type);
  209. if (err < 0)
  210. return err;
  211. err = nft_register_expr(&nft_connlimit_type);
  212. if (err < 0)
  213. goto err1;
  214. return 0;
  215. err1:
  216. nft_unregister_obj(&nft_connlimit_obj_type);
  217. return err;
  218. }
  219. static void __exit nft_connlimit_module_exit(void)
  220. {
  221. nft_unregister_expr(&nft_connlimit_type);
  222. nft_unregister_obj(&nft_connlimit_obj_type);
  223. }
  224. module_init(nft_connlimit_module_init);
  225. module_exit(nft_connlimit_module_exit);
  226. MODULE_LICENSE("GPL");
  227. MODULE_AUTHOR("Pablo Neira Ayuso");
  228. MODULE_ALIAS_NFT_EXPR("connlimit");
  229. MODULE_ALIAS_NFT_OBJ(NFT_OBJECT_CONNLIMIT);