netfilter: nf_tables: add register parsing/dumping helpers
[deliverable/linux.git] / net / netfilter / nft_immediate.c
CommitLineData
96518518 1/*
ef1f7df9 2 * Copyright (c) 2008-2009 Patrick McHardy <kaber@trash.net>
96518518
PM
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 * Development of this code funded by Astaro AG (http://www.astaro.com/)
9 */
10
11#include <linux/kernel.h>
12#include <linux/init.h>
13#include <linux/module.h>
14#include <linux/netlink.h>
15#include <linux/netfilter.h>
16#include <linux/netfilter/nf_tables.h>
17#include <net/netfilter/nf_tables_core.h>
18#include <net/netfilter/nf_tables.h>
19
20struct nft_immediate_expr {
21 struct nft_data data;
22 enum nft_registers dreg:8;
23 u8 dlen;
24};
25
26static void nft_immediate_eval(const struct nft_expr *expr,
a55e22e9 27 struct nft_regs *regs,
96518518
PM
28 const struct nft_pktinfo *pkt)
29{
30 const struct nft_immediate_expr *priv = nft_expr_priv(expr);
31
a55e22e9 32 nft_data_copy(&regs->data[priv->dreg], &priv->data);
96518518
PM
33}
34
35static const struct nla_policy nft_immediate_policy[NFTA_IMMEDIATE_MAX + 1] = {
36 [NFTA_IMMEDIATE_DREG] = { .type = NLA_U32 },
37 [NFTA_IMMEDIATE_DATA] = { .type = NLA_NESTED },
38};
39
40static int nft_immediate_init(const struct nft_ctx *ctx,
41 const struct nft_expr *expr,
42 const struct nlattr * const tb[])
43{
44 struct nft_immediate_expr *priv = nft_expr_priv(expr);
45 struct nft_data_desc desc;
46 int err;
47
48 if (tb[NFTA_IMMEDIATE_DREG] == NULL ||
49 tb[NFTA_IMMEDIATE_DATA] == NULL)
50 return -EINVAL;
51
96518518
PM
52 err = nft_data_init(ctx, &priv->data, &desc, tb[NFTA_IMMEDIATE_DATA]);
53 if (err < 0)
54 return err;
55 priv->dlen = desc.len;
56
b1c96ed3 57 priv->dreg = nft_parse_register(tb[NFTA_IMMEDIATE_DREG]);
1ec10212
PM
58 err = nft_validate_register_store(ctx, priv->dreg, &priv->data,
59 desc.type, desc.len);
96518518
PM
60 if (err < 0)
61 goto err1;
62
63 return 0;
64
65err1:
66 nft_data_uninit(&priv->data, desc.type);
67 return err;
68}
69
62472bce
PM
70static void nft_immediate_destroy(const struct nft_ctx *ctx,
71 const struct nft_expr *expr)
96518518
PM
72{
73 const struct nft_immediate_expr *priv = nft_expr_priv(expr);
74 return nft_data_uninit(&priv->data, nft_dreg_to_type(priv->dreg));
75}
76
77static int nft_immediate_dump(struct sk_buff *skb, const struct nft_expr *expr)
78{
79 const struct nft_immediate_expr *priv = nft_expr_priv(expr);
80
b1c96ed3 81 if (nft_dump_register(skb, NFTA_IMMEDIATE_DREG, priv->dreg))
96518518
PM
82 goto nla_put_failure;
83
84 return nft_data_dump(skb, NFTA_IMMEDIATE_DATA, &priv->data,
85 nft_dreg_to_type(priv->dreg), priv->dlen);
86
87nla_put_failure:
88 return -1;
89}
90
0ca743a5
PNA
91static int nft_immediate_validate(const struct nft_ctx *ctx,
92 const struct nft_expr *expr,
93 const struct nft_data **data)
20a69341
PM
94{
95 const struct nft_immediate_expr *priv = nft_expr_priv(expr);
96
97 if (priv->dreg == NFT_REG_VERDICT)
0ca743a5
PNA
98 *data = &priv->data;
99
100 return 0;
20a69341
PM
101}
102
ef1f7df9
PM
103static struct nft_expr_type nft_imm_type;
104static const struct nft_expr_ops nft_imm_ops = {
105 .type = &nft_imm_type,
96518518 106 .size = NFT_EXPR_SIZE(sizeof(struct nft_immediate_expr)),
96518518
PM
107 .eval = nft_immediate_eval,
108 .init = nft_immediate_init,
109 .destroy = nft_immediate_destroy,
110 .dump = nft_immediate_dump,
0ca743a5 111 .validate = nft_immediate_validate,
ef1f7df9
PM
112};
113
114static struct nft_expr_type nft_imm_type __read_mostly = {
115 .name = "immediate",
116 .ops = &nft_imm_ops,
96518518
PM
117 .policy = nft_immediate_policy,
118 .maxattr = NFTA_IMMEDIATE_MAX,
ef1f7df9 119 .owner = THIS_MODULE,
96518518
PM
120};
121
122int __init nft_immediate_module_init(void)
123{
ef1f7df9 124 return nft_register_expr(&nft_imm_type);
96518518
PM
125}
126
127void nft_immediate_module_exit(void)
128{
ef1f7df9 129 nft_unregister_expr(&nft_imm_type);
96518518 130}
This page took 0.095154 seconds and 5 git commands to generate.