act_ipt.c 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. /*
  2. * net/sched/act_ipt.c iptables target interface
  3. *
  4. *TODO: Add other tables. For now we only support the ipv4 table targets
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation; either version
  9. * 2 of the License, or (at your option) any later version.
  10. *
  11. * Copyright: Jamal Hadi Salim (2002-13)
  12. */
  13. #include <linux/types.h>
  14. #include <linux/kernel.h>
  15. #include <linux/string.h>
  16. #include <linux/errno.h>
  17. #include <linux/skbuff.h>
  18. #include <linux/rtnetlink.h>
  19. #include <linux/module.h>
  20. #include <linux/init.h>
  21. #include <linux/slab.h>
  22. #include <net/netlink.h>
  23. #include <net/pkt_sched.h>
  24. #include <linux/tc_act/tc_ipt.h>
  25. #include <net/tc_act/tc_ipt.h>
  26. #include <linux/netfilter_ipv4/ip_tables.h>
  27. #define IPT_TAB_MASK 15
  28. static int ipt_init_target(struct xt_entry_target *t, char *table, unsigned int hook)
  29. {
  30. struct xt_tgchk_param par;
  31. struct xt_target *target;
  32. int ret = 0;
  33. target = xt_request_find_target(AF_INET, t->u.user.name,
  34. t->u.user.revision);
  35. if (IS_ERR(target))
  36. return PTR_ERR(target);
  37. t->u.kernel.target = target;
  38. par.table = table;
  39. par.entryinfo = NULL;
  40. par.target = target;
  41. par.targinfo = t->data;
  42. par.hook_mask = hook;
  43. par.family = NFPROTO_IPV4;
  44. ret = xt_check_target(&par, t->u.target_size - sizeof(*t), 0, false);
  45. if (ret < 0) {
  46. module_put(t->u.kernel.target->me);
  47. return ret;
  48. }
  49. return 0;
  50. }
  51. static void ipt_destroy_target(struct xt_entry_target *t)
  52. {
  53. struct xt_tgdtor_param par = {
  54. .target = t->u.kernel.target,
  55. .targinfo = t->data,
  56. };
  57. if (par.target->destroy != NULL)
  58. par.target->destroy(&par);
  59. module_put(par.target->me);
  60. }
  61. static void tcf_ipt_release(struct tc_action *a, int bind)
  62. {
  63. struct tcf_ipt *ipt = to_ipt(a);
  64. ipt_destroy_target(ipt->tcfi_t);
  65. kfree(ipt->tcfi_tname);
  66. kfree(ipt->tcfi_t);
  67. }
  68. static const struct nla_policy ipt_policy[TCA_IPT_MAX + 1] = {
  69. [TCA_IPT_TABLE] = { .type = NLA_STRING, .len = IFNAMSIZ },
  70. [TCA_IPT_HOOK] = { .type = NLA_U32 },
  71. [TCA_IPT_INDEX] = { .type = NLA_U32 },
  72. [TCA_IPT_TARG] = { .len = sizeof(struct xt_entry_target) },
  73. };
  74. static int tcf_ipt_init(struct net *net, struct nlattr *nla, struct nlattr *est,
  75. struct tc_action *a, int ovr, int bind)
  76. {
  77. struct nlattr *tb[TCA_IPT_MAX + 1];
  78. struct tcf_ipt *ipt;
  79. struct xt_entry_target *td, *t;
  80. char *tname;
  81. int ret = 0, err;
  82. u32 hook = 0;
  83. u32 index = 0;
  84. if (nla == NULL)
  85. return -EINVAL;
  86. err = nla_parse_nested(tb, TCA_IPT_MAX, nla, ipt_policy);
  87. if (err < 0)
  88. return err;
  89. if (tb[TCA_IPT_HOOK] == NULL)
  90. return -EINVAL;
  91. if (tb[TCA_IPT_TARG] == NULL)
  92. return -EINVAL;
  93. td = (struct xt_entry_target *)nla_data(tb[TCA_IPT_TARG]);
  94. if (nla_len(tb[TCA_IPT_TARG]) < td->u.target_size)
  95. return -EINVAL;
  96. if (tb[TCA_IPT_INDEX] != NULL)
  97. index = nla_get_u32(tb[TCA_IPT_INDEX]);
  98. if (!tcf_hash_check(index, a, bind) ) {
  99. ret = tcf_hash_create(index, est, a, sizeof(*ipt), bind);
  100. if (ret)
  101. return ret;
  102. ret = ACT_P_CREATED;
  103. } else {
  104. if (bind)/* dont override defaults */
  105. return 0;
  106. tcf_hash_release(a, bind);
  107. if (!ovr)
  108. return -EEXIST;
  109. }
  110. ipt = to_ipt(a);
  111. hook = nla_get_u32(tb[TCA_IPT_HOOK]);
  112. err = -ENOMEM;
  113. tname = kmalloc(IFNAMSIZ, GFP_KERNEL);
  114. if (unlikely(!tname))
  115. goto err1;
  116. if (tb[TCA_IPT_TABLE] == NULL ||
  117. nla_strlcpy(tname, tb[TCA_IPT_TABLE], IFNAMSIZ) >= IFNAMSIZ)
  118. strcpy(tname, "mangle");
  119. t = kmemdup(td, td->u.target_size, GFP_KERNEL);
  120. if (unlikely(!t))
  121. goto err2;
  122. err = ipt_init_target(t, tname, hook);
  123. if (err < 0)
  124. goto err3;
  125. spin_lock_bh(&ipt->tcf_lock);
  126. if (ret != ACT_P_CREATED) {
  127. ipt_destroy_target(ipt->tcfi_t);
  128. kfree(ipt->tcfi_tname);
  129. kfree(ipt->tcfi_t);
  130. }
  131. ipt->tcfi_tname = tname;
  132. ipt->tcfi_t = t;
  133. ipt->tcfi_hook = hook;
  134. spin_unlock_bh(&ipt->tcf_lock);
  135. if (ret == ACT_P_CREATED)
  136. tcf_hash_insert(a);
  137. return ret;
  138. err3:
  139. kfree(t);
  140. err2:
  141. kfree(tname);
  142. err1:
  143. if (ret == ACT_P_CREATED)
  144. tcf_hash_cleanup(a, est);
  145. return err;
  146. }
  147. static int tcf_ipt(struct sk_buff *skb, const struct tc_action *a,
  148. struct tcf_result *res)
  149. {
  150. int ret = 0, result = 0;
  151. struct tcf_ipt *ipt = a->priv;
  152. struct xt_action_param par;
  153. if (skb_unclone(skb, GFP_ATOMIC))
  154. return TC_ACT_UNSPEC;
  155. spin_lock(&ipt->tcf_lock);
  156. ipt->tcf_tm.lastuse = jiffies;
  157. bstats_update(&ipt->tcf_bstats, skb);
  158. /* yes, we have to worry about both in and out dev
  159. * worry later - danger - this API seems to have changed
  160. * from earlier kernels
  161. */
  162. par.in = skb->dev;
  163. par.out = NULL;
  164. par.hooknum = ipt->tcfi_hook;
  165. par.target = ipt->tcfi_t->u.kernel.target;
  166. par.targinfo = ipt->tcfi_t->data;
  167. ret = par.target->target(skb, &par);
  168. switch (ret) {
  169. case NF_ACCEPT:
  170. result = TC_ACT_OK;
  171. break;
  172. case NF_DROP:
  173. result = TC_ACT_SHOT;
  174. ipt->tcf_qstats.drops++;
  175. break;
  176. case XT_CONTINUE:
  177. result = TC_ACT_PIPE;
  178. break;
  179. default:
  180. net_notice_ratelimited("tc filter: Bogus netfilter code %d assume ACCEPT\n",
  181. ret);
  182. result = TC_POLICE_OK;
  183. break;
  184. }
  185. spin_unlock(&ipt->tcf_lock);
  186. return result;
  187. }
  188. static int tcf_ipt_dump(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
  189. {
  190. unsigned char *b = skb_tail_pointer(skb);
  191. struct tcf_ipt *ipt = a->priv;
  192. struct xt_entry_target *t;
  193. struct tcf_t tm;
  194. struct tc_cnt c;
  195. /* for simple targets kernel size == user size
  196. * user name = target name
  197. * for foolproof you need to not assume this
  198. */
  199. t = kmemdup(ipt->tcfi_t, ipt->tcfi_t->u.user.target_size, GFP_ATOMIC);
  200. if (unlikely(!t))
  201. goto nla_put_failure;
  202. c.bindcnt = ipt->tcf_bindcnt - bind;
  203. c.refcnt = ipt->tcf_refcnt - ref;
  204. strcpy(t->u.user.name, ipt->tcfi_t->u.kernel.target->name);
  205. if (nla_put(skb, TCA_IPT_TARG, ipt->tcfi_t->u.user.target_size, t) ||
  206. nla_put_u32(skb, TCA_IPT_INDEX, ipt->tcf_index) ||
  207. nla_put_u32(skb, TCA_IPT_HOOK, ipt->tcfi_hook) ||
  208. nla_put(skb, TCA_IPT_CNT, sizeof(struct tc_cnt), &c) ||
  209. nla_put_string(skb, TCA_IPT_TABLE, ipt->tcfi_tname))
  210. goto nla_put_failure;
  211. tm.install = jiffies_to_clock_t(jiffies - ipt->tcf_tm.install);
  212. tm.lastuse = jiffies_to_clock_t(jiffies - ipt->tcf_tm.lastuse);
  213. tm.expires = jiffies_to_clock_t(ipt->tcf_tm.expires);
  214. if (nla_put(skb, TCA_IPT_TM, sizeof (tm), &tm))
  215. goto nla_put_failure;
  216. kfree(t);
  217. return skb->len;
  218. nla_put_failure:
  219. nlmsg_trim(skb, b);
  220. kfree(t);
  221. return -1;
  222. }
  223. static struct tc_action_ops act_ipt_ops = {
  224. .kind = "ipt",
  225. .type = TCA_ACT_IPT,
  226. .owner = THIS_MODULE,
  227. .act = tcf_ipt,
  228. .dump = tcf_ipt_dump,
  229. .cleanup = tcf_ipt_release,
  230. .init = tcf_ipt_init,
  231. };
  232. static struct tc_action_ops act_xt_ops = {
  233. .kind = "xt",
  234. .type = TCA_ACT_XT,
  235. .owner = THIS_MODULE,
  236. .act = tcf_ipt,
  237. .dump = tcf_ipt_dump,
  238. .cleanup = tcf_ipt_release,
  239. .init = tcf_ipt_init,
  240. };
  241. MODULE_AUTHOR("Jamal Hadi Salim(2002-13)");
  242. MODULE_DESCRIPTION("Iptables target actions");
  243. MODULE_LICENSE("GPL");
  244. MODULE_ALIAS("act_xt");
  245. static int __init ipt_init_module(void)
  246. {
  247. int ret1, ret2;
  248. ret1 = tcf_register_action(&act_xt_ops, IPT_TAB_MASK);
  249. if (ret1 < 0)
  250. printk("Failed to load xt action\n");
  251. ret2 = tcf_register_action(&act_ipt_ops, IPT_TAB_MASK);
  252. if (ret2 < 0)
  253. printk("Failed to load ipt action\n");
  254. if (ret1 < 0 && ret2 < 0) {
  255. return ret1;
  256. } else
  257. return 0;
  258. }
  259. static void __exit ipt_cleanup_module(void)
  260. {
  261. tcf_unregister_action(&act_xt_ops);
  262. tcf_unregister_action(&act_ipt_ops);
  263. }
  264. module_init(ipt_init_module);
  265. module_exit(ipt_cleanup_module);