nft_compat.c 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908
  1. /*
  2. * (C) 2012-2013 by Pablo Neira Ayuso <pablo@netfilter.org>
  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. * This software has been sponsored by Sophos Astaro <http://www.sophos.com>
  9. */
  10. #include <linux/kernel.h>
  11. #include <linux/init.h>
  12. #include <linux/module.h>
  13. #include <linux/netlink.h>
  14. #include <linux/netfilter.h>
  15. #include <linux/netfilter/nfnetlink.h>
  16. #include <linux/netfilter/nf_tables.h>
  17. #include <linux/netfilter/nf_tables_compat.h>
  18. #include <linux/netfilter/x_tables.h>
  19. #include <linux/netfilter_ipv4/ip_tables.h>
  20. #include <linux/netfilter_ipv6/ip6_tables.h>
  21. #include <linux/netfilter_bridge/ebtables.h>
  22. #include <linux/netfilter_arp/arp_tables.h>
  23. #include <net/netfilter/nf_tables.h>
  24. /* Used for matches where *info is larger than X byte */
  25. #define NFT_MATCH_LARGE_THRESH 192
  26. struct nft_xt_match_priv {
  27. void *info;
  28. };
  29. static int nft_compat_chain_validate_dependency(const struct nft_ctx *ctx,
  30. const char *tablename)
  31. {
  32. enum nft_chain_types type = NFT_CHAIN_T_DEFAULT;
  33. const struct nft_chain *chain = ctx->chain;
  34. const struct nft_base_chain *basechain;
  35. if (!tablename ||
  36. !nft_is_base_chain(chain))
  37. return 0;
  38. basechain = nft_base_chain(chain);
  39. if (strcmp(tablename, "nat") == 0) {
  40. if (ctx->family != NFPROTO_BRIDGE)
  41. type = NFT_CHAIN_T_NAT;
  42. if (basechain->type->type != type)
  43. return -EINVAL;
  44. }
  45. return 0;
  46. }
  47. union nft_entry {
  48. struct ipt_entry e4;
  49. struct ip6t_entry e6;
  50. struct ebt_entry ebt;
  51. struct arpt_entry arp;
  52. };
  53. static inline void
  54. nft_compat_set_par(struct xt_action_param *par, void *xt, const void *xt_info)
  55. {
  56. par->target = xt;
  57. par->targinfo = xt_info;
  58. par->hotdrop = false;
  59. }
  60. static void nft_target_eval_xt(const struct nft_expr *expr,
  61. struct nft_regs *regs,
  62. const struct nft_pktinfo *pkt)
  63. {
  64. void *info = nft_expr_priv(expr);
  65. struct xt_target *target = expr->ops->data;
  66. struct sk_buff *skb = pkt->skb;
  67. int ret;
  68. nft_compat_set_par((struct xt_action_param *)&pkt->xt, target, info);
  69. ret = target->target(skb, &pkt->xt);
  70. if (pkt->xt.hotdrop)
  71. ret = NF_DROP;
  72. switch (ret) {
  73. case XT_CONTINUE:
  74. regs->verdict.code = NFT_CONTINUE;
  75. break;
  76. default:
  77. regs->verdict.code = ret;
  78. break;
  79. }
  80. }
  81. static void nft_target_eval_bridge(const struct nft_expr *expr,
  82. struct nft_regs *regs,
  83. const struct nft_pktinfo *pkt)
  84. {
  85. void *info = nft_expr_priv(expr);
  86. struct xt_target *target = expr->ops->data;
  87. struct sk_buff *skb = pkt->skb;
  88. int ret;
  89. nft_compat_set_par((struct xt_action_param *)&pkt->xt, target, info);
  90. ret = target->target(skb, &pkt->xt);
  91. if (pkt->xt.hotdrop)
  92. ret = NF_DROP;
  93. switch (ret) {
  94. case EBT_ACCEPT:
  95. regs->verdict.code = NF_ACCEPT;
  96. break;
  97. case EBT_DROP:
  98. regs->verdict.code = NF_DROP;
  99. break;
  100. case EBT_CONTINUE:
  101. regs->verdict.code = NFT_CONTINUE;
  102. break;
  103. case EBT_RETURN:
  104. regs->verdict.code = NFT_RETURN;
  105. break;
  106. default:
  107. regs->verdict.code = ret;
  108. break;
  109. }
  110. }
  111. static const struct nla_policy nft_target_policy[NFTA_TARGET_MAX + 1] = {
  112. [NFTA_TARGET_NAME] = { .type = NLA_NUL_STRING },
  113. [NFTA_TARGET_REV] = { .type = NLA_U32 },
  114. [NFTA_TARGET_INFO] = { .type = NLA_BINARY },
  115. };
  116. static void
  117. nft_target_set_tgchk_param(struct xt_tgchk_param *par,
  118. const struct nft_ctx *ctx,
  119. struct xt_target *target, void *info,
  120. union nft_entry *entry, u16 proto, bool inv)
  121. {
  122. par->net = ctx->net;
  123. par->table = ctx->table->name;
  124. switch (ctx->family) {
  125. case AF_INET:
  126. entry->e4.ip.proto = proto;
  127. entry->e4.ip.invflags = inv ? IPT_INV_PROTO : 0;
  128. break;
  129. case AF_INET6:
  130. if (proto)
  131. entry->e6.ipv6.flags |= IP6T_F_PROTO;
  132. entry->e6.ipv6.proto = proto;
  133. entry->e6.ipv6.invflags = inv ? IP6T_INV_PROTO : 0;
  134. break;
  135. case NFPROTO_BRIDGE:
  136. entry->ebt.ethproto = (__force __be16)proto;
  137. entry->ebt.invflags = inv ? EBT_IPROTO : 0;
  138. break;
  139. case NFPROTO_ARP:
  140. break;
  141. }
  142. par->entryinfo = entry;
  143. par->target = target;
  144. par->targinfo = info;
  145. if (nft_is_base_chain(ctx->chain)) {
  146. const struct nft_base_chain *basechain =
  147. nft_base_chain(ctx->chain);
  148. const struct nf_hook_ops *ops = &basechain->ops;
  149. par->hook_mask = 1 << ops->hooknum;
  150. } else {
  151. par->hook_mask = 0;
  152. }
  153. par->family = ctx->family;
  154. par->nft_compat = true;
  155. }
  156. static void target_compat_from_user(struct xt_target *t, void *in, void *out)
  157. {
  158. int pad;
  159. memcpy(out, in, t->targetsize);
  160. pad = XT_ALIGN(t->targetsize) - t->targetsize;
  161. if (pad > 0)
  162. memset(out + t->targetsize, 0, pad);
  163. }
  164. static const struct nla_policy nft_rule_compat_policy[NFTA_RULE_COMPAT_MAX + 1] = {
  165. [NFTA_RULE_COMPAT_PROTO] = { .type = NLA_U32 },
  166. [NFTA_RULE_COMPAT_FLAGS] = { .type = NLA_U32 },
  167. };
  168. static int nft_parse_compat(const struct nlattr *attr, u16 *proto, bool *inv)
  169. {
  170. struct nlattr *tb[NFTA_RULE_COMPAT_MAX+1];
  171. u32 flags;
  172. int err;
  173. err = nla_parse_nested(tb, NFTA_RULE_COMPAT_MAX, attr,
  174. nft_rule_compat_policy, NULL);
  175. if (err < 0)
  176. return err;
  177. if (!tb[NFTA_RULE_COMPAT_PROTO] || !tb[NFTA_RULE_COMPAT_FLAGS])
  178. return -EINVAL;
  179. flags = ntohl(nla_get_be32(tb[NFTA_RULE_COMPAT_FLAGS]));
  180. if (flags & ~NFT_RULE_COMPAT_F_MASK)
  181. return -EINVAL;
  182. if (flags & NFT_RULE_COMPAT_F_INV)
  183. *inv = true;
  184. *proto = ntohl(nla_get_be32(tb[NFTA_RULE_COMPAT_PROTO]));
  185. return 0;
  186. }
  187. static int
  188. nft_target_init(const struct nft_ctx *ctx, const struct nft_expr *expr,
  189. const struct nlattr * const tb[])
  190. {
  191. void *info = nft_expr_priv(expr);
  192. struct xt_target *target = expr->ops->data;
  193. struct xt_tgchk_param par;
  194. size_t size = XT_ALIGN(nla_len(tb[NFTA_TARGET_INFO]));
  195. u16 proto = 0;
  196. bool inv = false;
  197. union nft_entry e = {};
  198. int ret;
  199. target_compat_from_user(target, nla_data(tb[NFTA_TARGET_INFO]), info);
  200. if (ctx->nla[NFTA_RULE_COMPAT]) {
  201. ret = nft_parse_compat(ctx->nla[NFTA_RULE_COMPAT], &proto, &inv);
  202. if (ret < 0)
  203. return ret;
  204. }
  205. nft_target_set_tgchk_param(&par, ctx, target, info, &e, proto, inv);
  206. ret = xt_check_target(&par, size, proto, inv);
  207. if (ret < 0)
  208. return ret;
  209. /* The standard target cannot be used */
  210. if (!target->target)
  211. return -EINVAL;
  212. return 0;
  213. }
  214. static void
  215. nft_target_destroy(const struct nft_ctx *ctx, const struct nft_expr *expr)
  216. {
  217. struct xt_target *target = expr->ops->data;
  218. void *info = nft_expr_priv(expr);
  219. struct module *me = target->me;
  220. struct xt_tgdtor_param par;
  221. par.net = ctx->net;
  222. par.target = target;
  223. par.targinfo = info;
  224. par.family = ctx->family;
  225. if (par.target->destroy != NULL)
  226. par.target->destroy(&par);
  227. module_put(me);
  228. kfree(expr->ops);
  229. }
  230. static int nft_extension_dump_info(struct sk_buff *skb, int attr,
  231. const void *info,
  232. unsigned int size, unsigned int user_size)
  233. {
  234. unsigned int info_size, aligned_size = XT_ALIGN(size);
  235. struct nlattr *nla;
  236. nla = nla_reserve(skb, attr, aligned_size);
  237. if (!nla)
  238. return -1;
  239. info_size = user_size ? : size;
  240. memcpy(nla_data(nla), info, info_size);
  241. memset(nla_data(nla) + info_size, 0, aligned_size - info_size);
  242. return 0;
  243. }
  244. static int nft_target_dump(struct sk_buff *skb, const struct nft_expr *expr)
  245. {
  246. const struct xt_target *target = expr->ops->data;
  247. void *info = nft_expr_priv(expr);
  248. if (nla_put_string(skb, NFTA_TARGET_NAME, target->name) ||
  249. nla_put_be32(skb, NFTA_TARGET_REV, htonl(target->revision)) ||
  250. nft_extension_dump_info(skb, NFTA_TARGET_INFO, info,
  251. target->targetsize, target->usersize))
  252. goto nla_put_failure;
  253. return 0;
  254. nla_put_failure:
  255. return -1;
  256. }
  257. static int nft_target_validate(const struct nft_ctx *ctx,
  258. const struct nft_expr *expr,
  259. const struct nft_data **data)
  260. {
  261. struct xt_target *target = expr->ops->data;
  262. unsigned int hook_mask = 0;
  263. int ret;
  264. if (nft_is_base_chain(ctx->chain)) {
  265. const struct nft_base_chain *basechain =
  266. nft_base_chain(ctx->chain);
  267. const struct nf_hook_ops *ops = &basechain->ops;
  268. hook_mask = 1 << ops->hooknum;
  269. if (target->hooks && !(hook_mask & target->hooks))
  270. return -EINVAL;
  271. ret = nft_compat_chain_validate_dependency(ctx, target->table);
  272. if (ret < 0)
  273. return ret;
  274. }
  275. return 0;
  276. }
  277. static void __nft_match_eval(const struct nft_expr *expr,
  278. struct nft_regs *regs,
  279. const struct nft_pktinfo *pkt,
  280. void *info)
  281. {
  282. struct xt_match *match = expr->ops->data;
  283. struct sk_buff *skb = pkt->skb;
  284. bool ret;
  285. nft_compat_set_par((struct xt_action_param *)&pkt->xt, match, info);
  286. ret = match->match(skb, (struct xt_action_param *)&pkt->xt);
  287. if (pkt->xt.hotdrop) {
  288. regs->verdict.code = NF_DROP;
  289. return;
  290. }
  291. switch (ret ? 1 : 0) {
  292. case 1:
  293. regs->verdict.code = NFT_CONTINUE;
  294. break;
  295. case 0:
  296. regs->verdict.code = NFT_BREAK;
  297. break;
  298. }
  299. }
  300. static void nft_match_large_eval(const struct nft_expr *expr,
  301. struct nft_regs *regs,
  302. const struct nft_pktinfo *pkt)
  303. {
  304. struct nft_xt_match_priv *priv = nft_expr_priv(expr);
  305. __nft_match_eval(expr, regs, pkt, priv->info);
  306. }
  307. static void nft_match_eval(const struct nft_expr *expr,
  308. struct nft_regs *regs,
  309. const struct nft_pktinfo *pkt)
  310. {
  311. __nft_match_eval(expr, regs, pkt, nft_expr_priv(expr));
  312. }
  313. static const struct nla_policy nft_match_policy[NFTA_MATCH_MAX + 1] = {
  314. [NFTA_MATCH_NAME] = { .type = NLA_NUL_STRING },
  315. [NFTA_MATCH_REV] = { .type = NLA_U32 },
  316. [NFTA_MATCH_INFO] = { .type = NLA_BINARY },
  317. };
  318. /* struct xt_mtchk_param and xt_tgchk_param look very similar */
  319. static void
  320. nft_match_set_mtchk_param(struct xt_mtchk_param *par, const struct nft_ctx *ctx,
  321. struct xt_match *match, void *info,
  322. union nft_entry *entry, u16 proto, bool inv)
  323. {
  324. par->net = ctx->net;
  325. par->table = ctx->table->name;
  326. switch (ctx->family) {
  327. case AF_INET:
  328. entry->e4.ip.proto = proto;
  329. entry->e4.ip.invflags = inv ? IPT_INV_PROTO : 0;
  330. break;
  331. case AF_INET6:
  332. if (proto)
  333. entry->e6.ipv6.flags |= IP6T_F_PROTO;
  334. entry->e6.ipv6.proto = proto;
  335. entry->e6.ipv6.invflags = inv ? IP6T_INV_PROTO : 0;
  336. break;
  337. case NFPROTO_BRIDGE:
  338. entry->ebt.ethproto = (__force __be16)proto;
  339. entry->ebt.invflags = inv ? EBT_IPROTO : 0;
  340. break;
  341. case NFPROTO_ARP:
  342. break;
  343. }
  344. par->entryinfo = entry;
  345. par->match = match;
  346. par->matchinfo = info;
  347. if (nft_is_base_chain(ctx->chain)) {
  348. const struct nft_base_chain *basechain =
  349. nft_base_chain(ctx->chain);
  350. const struct nf_hook_ops *ops = &basechain->ops;
  351. par->hook_mask = 1 << ops->hooknum;
  352. } else {
  353. par->hook_mask = 0;
  354. }
  355. par->family = ctx->family;
  356. par->nft_compat = true;
  357. }
  358. static void match_compat_from_user(struct xt_match *m, void *in, void *out)
  359. {
  360. int pad;
  361. memcpy(out, in, m->matchsize);
  362. pad = XT_ALIGN(m->matchsize) - m->matchsize;
  363. if (pad > 0)
  364. memset(out + m->matchsize, 0, pad);
  365. }
  366. static int
  367. __nft_match_init(const struct nft_ctx *ctx, const struct nft_expr *expr,
  368. const struct nlattr * const tb[],
  369. void *info)
  370. {
  371. struct xt_match *match = expr->ops->data;
  372. struct xt_mtchk_param par;
  373. size_t size = XT_ALIGN(nla_len(tb[NFTA_MATCH_INFO]));
  374. u16 proto = 0;
  375. bool inv = false;
  376. union nft_entry e = {};
  377. int ret;
  378. match_compat_from_user(match, nla_data(tb[NFTA_MATCH_INFO]), info);
  379. if (ctx->nla[NFTA_RULE_COMPAT]) {
  380. ret = nft_parse_compat(ctx->nla[NFTA_RULE_COMPAT], &proto, &inv);
  381. if (ret < 0)
  382. return ret;
  383. }
  384. nft_match_set_mtchk_param(&par, ctx, match, info, &e, proto, inv);
  385. return xt_check_match(&par, size, proto, inv);
  386. }
  387. static int
  388. nft_match_init(const struct nft_ctx *ctx, const struct nft_expr *expr,
  389. const struct nlattr * const tb[])
  390. {
  391. return __nft_match_init(ctx, expr, tb, nft_expr_priv(expr));
  392. }
  393. static int
  394. nft_match_large_init(const struct nft_ctx *ctx, const struct nft_expr *expr,
  395. const struct nlattr * const tb[])
  396. {
  397. struct nft_xt_match_priv *priv = nft_expr_priv(expr);
  398. struct xt_match *m = expr->ops->data;
  399. int ret;
  400. priv->info = kmalloc(XT_ALIGN(m->matchsize), GFP_KERNEL);
  401. if (!priv->info)
  402. return -ENOMEM;
  403. ret = __nft_match_init(ctx, expr, tb, priv->info);
  404. if (ret)
  405. kfree(priv->info);
  406. return ret;
  407. }
  408. static void
  409. __nft_match_destroy(const struct nft_ctx *ctx, const struct nft_expr *expr,
  410. void *info)
  411. {
  412. struct xt_match *match = expr->ops->data;
  413. struct module *me = match->me;
  414. struct xt_mtdtor_param par;
  415. par.net = ctx->net;
  416. par.match = match;
  417. par.matchinfo = info;
  418. par.family = ctx->family;
  419. if (par.match->destroy != NULL)
  420. par.match->destroy(&par);
  421. module_put(me);
  422. kfree(expr->ops);
  423. }
  424. static void
  425. nft_match_destroy(const struct nft_ctx *ctx, const struct nft_expr *expr)
  426. {
  427. __nft_match_destroy(ctx, expr, nft_expr_priv(expr));
  428. }
  429. static void
  430. nft_match_large_destroy(const struct nft_ctx *ctx, const struct nft_expr *expr)
  431. {
  432. struct nft_xt_match_priv *priv = nft_expr_priv(expr);
  433. __nft_match_destroy(ctx, expr, priv->info);
  434. kfree(priv->info);
  435. }
  436. static int __nft_match_dump(struct sk_buff *skb, const struct nft_expr *expr,
  437. void *info)
  438. {
  439. struct xt_match *match = expr->ops->data;
  440. if (nla_put_string(skb, NFTA_MATCH_NAME, match->name) ||
  441. nla_put_be32(skb, NFTA_MATCH_REV, htonl(match->revision)) ||
  442. nft_extension_dump_info(skb, NFTA_MATCH_INFO, info,
  443. match->matchsize, match->usersize))
  444. goto nla_put_failure;
  445. return 0;
  446. nla_put_failure:
  447. return -1;
  448. }
  449. static int nft_match_dump(struct sk_buff *skb, const struct nft_expr *expr)
  450. {
  451. return __nft_match_dump(skb, expr, nft_expr_priv(expr));
  452. }
  453. static int nft_match_large_dump(struct sk_buff *skb, const struct nft_expr *e)
  454. {
  455. struct nft_xt_match_priv *priv = nft_expr_priv(e);
  456. return __nft_match_dump(skb, e, priv->info);
  457. }
  458. static int nft_match_validate(const struct nft_ctx *ctx,
  459. const struct nft_expr *expr,
  460. const struct nft_data **data)
  461. {
  462. struct xt_match *match = expr->ops->data;
  463. unsigned int hook_mask = 0;
  464. int ret;
  465. if (nft_is_base_chain(ctx->chain)) {
  466. const struct nft_base_chain *basechain =
  467. nft_base_chain(ctx->chain);
  468. const struct nf_hook_ops *ops = &basechain->ops;
  469. hook_mask = 1 << ops->hooknum;
  470. if (match->hooks && !(hook_mask & match->hooks))
  471. return -EINVAL;
  472. ret = nft_compat_chain_validate_dependency(ctx, match->table);
  473. if (ret < 0)
  474. return ret;
  475. }
  476. return 0;
  477. }
  478. static int
  479. nfnl_compat_fill_info(struct sk_buff *skb, u32 portid, u32 seq, u32 type,
  480. int event, u16 family, const char *name,
  481. int rev, int target)
  482. {
  483. struct nlmsghdr *nlh;
  484. struct nfgenmsg *nfmsg;
  485. unsigned int flags = portid ? NLM_F_MULTI : 0;
  486. event = nfnl_msg_type(NFNL_SUBSYS_NFT_COMPAT, event);
  487. nlh = nlmsg_put(skb, portid, seq, event, sizeof(*nfmsg), flags);
  488. if (nlh == NULL)
  489. goto nlmsg_failure;
  490. nfmsg = nlmsg_data(nlh);
  491. nfmsg->nfgen_family = family;
  492. nfmsg->version = NFNETLINK_V0;
  493. nfmsg->res_id = 0;
  494. if (nla_put_string(skb, NFTA_COMPAT_NAME, name) ||
  495. nla_put_be32(skb, NFTA_COMPAT_REV, htonl(rev)) ||
  496. nla_put_be32(skb, NFTA_COMPAT_TYPE, htonl(target)))
  497. goto nla_put_failure;
  498. nlmsg_end(skb, nlh);
  499. return skb->len;
  500. nlmsg_failure:
  501. nla_put_failure:
  502. nlmsg_cancel(skb, nlh);
  503. return -1;
  504. }
  505. static int nfnl_compat_get_rcu(struct net *net, struct sock *nfnl,
  506. struct sk_buff *skb, const struct nlmsghdr *nlh,
  507. const struct nlattr * const tb[],
  508. struct netlink_ext_ack *extack)
  509. {
  510. int ret = 0, target;
  511. struct nfgenmsg *nfmsg;
  512. const char *fmt;
  513. const char *name;
  514. u32 rev;
  515. struct sk_buff *skb2;
  516. if (tb[NFTA_COMPAT_NAME] == NULL ||
  517. tb[NFTA_COMPAT_REV] == NULL ||
  518. tb[NFTA_COMPAT_TYPE] == NULL)
  519. return -EINVAL;
  520. name = nla_data(tb[NFTA_COMPAT_NAME]);
  521. rev = ntohl(nla_get_be32(tb[NFTA_COMPAT_REV]));
  522. target = ntohl(nla_get_be32(tb[NFTA_COMPAT_TYPE]));
  523. nfmsg = nlmsg_data(nlh);
  524. switch(nfmsg->nfgen_family) {
  525. case AF_INET:
  526. fmt = "ipt_%s";
  527. break;
  528. case AF_INET6:
  529. fmt = "ip6t_%s";
  530. break;
  531. case NFPROTO_BRIDGE:
  532. fmt = "ebt_%s";
  533. break;
  534. case NFPROTO_ARP:
  535. fmt = "arpt_%s";
  536. break;
  537. default:
  538. pr_err("nft_compat: unsupported protocol %d\n",
  539. nfmsg->nfgen_family);
  540. return -EINVAL;
  541. }
  542. if (!try_module_get(THIS_MODULE))
  543. return -EINVAL;
  544. rcu_read_unlock();
  545. try_then_request_module(xt_find_revision(nfmsg->nfgen_family, name,
  546. rev, target, &ret),
  547. fmt, name);
  548. if (ret < 0)
  549. goto out_put;
  550. skb2 = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
  551. if (skb2 == NULL) {
  552. ret = -ENOMEM;
  553. goto out_put;
  554. }
  555. /* include the best revision for this extension in the message */
  556. if (nfnl_compat_fill_info(skb2, NETLINK_CB(skb).portid,
  557. nlh->nlmsg_seq,
  558. NFNL_MSG_TYPE(nlh->nlmsg_type),
  559. NFNL_MSG_COMPAT_GET,
  560. nfmsg->nfgen_family,
  561. name, ret, target) <= 0) {
  562. kfree_skb(skb2);
  563. goto out_put;
  564. }
  565. ret = netlink_unicast(nfnl, skb2, NETLINK_CB(skb).portid,
  566. MSG_DONTWAIT);
  567. if (ret > 0)
  568. ret = 0;
  569. out_put:
  570. rcu_read_lock();
  571. module_put(THIS_MODULE);
  572. return ret == -EAGAIN ? -ENOBUFS : ret;
  573. }
  574. static const struct nla_policy nfnl_compat_policy_get[NFTA_COMPAT_MAX+1] = {
  575. [NFTA_COMPAT_NAME] = { .type = NLA_NUL_STRING,
  576. .len = NFT_COMPAT_NAME_MAX-1 },
  577. [NFTA_COMPAT_REV] = { .type = NLA_U32 },
  578. [NFTA_COMPAT_TYPE] = { .type = NLA_U32 },
  579. };
  580. static const struct nfnl_callback nfnl_nft_compat_cb[NFNL_MSG_COMPAT_MAX] = {
  581. [NFNL_MSG_COMPAT_GET] = { .call_rcu = nfnl_compat_get_rcu,
  582. .attr_count = NFTA_COMPAT_MAX,
  583. .policy = nfnl_compat_policy_get },
  584. };
  585. static const struct nfnetlink_subsystem nfnl_compat_subsys = {
  586. .name = "nft-compat",
  587. .subsys_id = NFNL_SUBSYS_NFT_COMPAT,
  588. .cb_count = NFNL_MSG_COMPAT_MAX,
  589. .cb = nfnl_nft_compat_cb,
  590. };
  591. static struct nft_expr_type nft_match_type;
  592. static const struct nft_expr_ops *
  593. nft_match_select_ops(const struct nft_ctx *ctx,
  594. const struct nlattr * const tb[])
  595. {
  596. struct nft_expr_ops *ops;
  597. struct xt_match *match;
  598. unsigned int matchsize;
  599. char *mt_name;
  600. u32 rev, family;
  601. int err;
  602. if (tb[NFTA_MATCH_NAME] == NULL ||
  603. tb[NFTA_MATCH_REV] == NULL ||
  604. tb[NFTA_MATCH_INFO] == NULL)
  605. return ERR_PTR(-EINVAL);
  606. mt_name = nla_data(tb[NFTA_MATCH_NAME]);
  607. rev = ntohl(nla_get_be32(tb[NFTA_MATCH_REV]));
  608. family = ctx->family;
  609. match = xt_request_find_match(family, mt_name, rev);
  610. if (IS_ERR(match))
  611. return ERR_PTR(-ENOENT);
  612. if (match->matchsize > nla_len(tb[NFTA_MATCH_INFO])) {
  613. err = -EINVAL;
  614. goto err;
  615. }
  616. ops = kzalloc(sizeof(struct nft_expr_ops), GFP_KERNEL);
  617. if (!ops) {
  618. err = -ENOMEM;
  619. goto err;
  620. }
  621. ops->type = &nft_match_type;
  622. ops->eval = nft_match_eval;
  623. ops->init = nft_match_init;
  624. ops->destroy = nft_match_destroy;
  625. ops->dump = nft_match_dump;
  626. ops->validate = nft_match_validate;
  627. ops->data = match;
  628. matchsize = NFT_EXPR_SIZE(XT_ALIGN(match->matchsize));
  629. if (matchsize > NFT_MATCH_LARGE_THRESH) {
  630. matchsize = NFT_EXPR_SIZE(sizeof(struct nft_xt_match_priv));
  631. ops->eval = nft_match_large_eval;
  632. ops->init = nft_match_large_init;
  633. ops->destroy = nft_match_large_destroy;
  634. ops->dump = nft_match_large_dump;
  635. }
  636. ops->size = matchsize;
  637. return ops;
  638. err:
  639. module_put(match->me);
  640. return ERR_PTR(err);
  641. }
  642. static void nft_match_release_ops(const struct nft_expr_ops *ops)
  643. {
  644. struct xt_match *match = ops->data;
  645. module_put(match->me);
  646. kfree(ops);
  647. }
  648. static struct nft_expr_type nft_match_type __read_mostly = {
  649. .name = "match",
  650. .select_ops = nft_match_select_ops,
  651. .release_ops = nft_match_release_ops,
  652. .policy = nft_match_policy,
  653. .maxattr = NFTA_MATCH_MAX,
  654. .owner = THIS_MODULE,
  655. };
  656. static struct nft_expr_type nft_target_type;
  657. static const struct nft_expr_ops *
  658. nft_target_select_ops(const struct nft_ctx *ctx,
  659. const struct nlattr * const tb[])
  660. {
  661. struct nft_expr_ops *ops;
  662. struct xt_target *target;
  663. char *tg_name;
  664. u32 rev, family;
  665. int err;
  666. if (tb[NFTA_TARGET_NAME] == NULL ||
  667. tb[NFTA_TARGET_REV] == NULL ||
  668. tb[NFTA_TARGET_INFO] == NULL)
  669. return ERR_PTR(-EINVAL);
  670. tg_name = nla_data(tb[NFTA_TARGET_NAME]);
  671. rev = ntohl(nla_get_be32(tb[NFTA_TARGET_REV]));
  672. family = ctx->family;
  673. if (strcmp(tg_name, XT_ERROR_TARGET) == 0 ||
  674. strcmp(tg_name, XT_STANDARD_TARGET) == 0 ||
  675. strcmp(tg_name, "standard") == 0)
  676. return ERR_PTR(-EINVAL);
  677. target = xt_request_find_target(family, tg_name, rev);
  678. if (IS_ERR(target))
  679. return ERR_PTR(-ENOENT);
  680. if (!target->target) {
  681. err = -EINVAL;
  682. goto err;
  683. }
  684. if (target->targetsize > nla_len(tb[NFTA_TARGET_INFO])) {
  685. err = -EINVAL;
  686. goto err;
  687. }
  688. ops = kzalloc(sizeof(struct nft_expr_ops), GFP_KERNEL);
  689. if (!ops) {
  690. err = -ENOMEM;
  691. goto err;
  692. }
  693. ops->type = &nft_target_type;
  694. ops->size = NFT_EXPR_SIZE(XT_ALIGN(target->targetsize));
  695. ops->init = nft_target_init;
  696. ops->destroy = nft_target_destroy;
  697. ops->dump = nft_target_dump;
  698. ops->validate = nft_target_validate;
  699. ops->data = target;
  700. if (family == NFPROTO_BRIDGE)
  701. ops->eval = nft_target_eval_bridge;
  702. else
  703. ops->eval = nft_target_eval_xt;
  704. return ops;
  705. err:
  706. module_put(target->me);
  707. return ERR_PTR(err);
  708. }
  709. static void nft_target_release_ops(const struct nft_expr_ops *ops)
  710. {
  711. struct xt_target *target = ops->data;
  712. module_put(target->me);
  713. kfree(ops);
  714. }
  715. static struct nft_expr_type nft_target_type __read_mostly = {
  716. .name = "target",
  717. .select_ops = nft_target_select_ops,
  718. .release_ops = nft_target_release_ops,
  719. .policy = nft_target_policy,
  720. .maxattr = NFTA_TARGET_MAX,
  721. .owner = THIS_MODULE,
  722. };
  723. static int __init nft_compat_module_init(void)
  724. {
  725. int ret;
  726. ret = nft_register_expr(&nft_match_type);
  727. if (ret < 0)
  728. return ret;
  729. ret = nft_register_expr(&nft_target_type);
  730. if (ret < 0)
  731. goto err_match;
  732. ret = nfnetlink_subsys_register(&nfnl_compat_subsys);
  733. if (ret < 0) {
  734. pr_err("nft_compat: cannot register with nfnetlink.\n");
  735. goto err_target;
  736. }
  737. return ret;
  738. err_target:
  739. nft_unregister_expr(&nft_target_type);
  740. err_match:
  741. nft_unregister_expr(&nft_match_type);
  742. return ret;
  743. }
  744. static void __exit nft_compat_module_exit(void)
  745. {
  746. nfnetlink_subsys_unregister(&nfnl_compat_subsys);
  747. nft_unregister_expr(&nft_target_type);
  748. nft_unregister_expr(&nft_match_type);
  749. }
  750. MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_NFT_COMPAT);
  751. module_init(nft_compat_module_init);
  752. module_exit(nft_compat_module_exit);
  753. MODULE_LICENSE("GPL");
  754. MODULE_AUTHOR("Pablo Neira Ayuso <pablo@netfilter.org>");
  755. MODULE_ALIAS_NFT_EXPR("match");
  756. MODULE_ALIAS_NFT_EXPR("target");