1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2008-2009 Patrick McHardy <kaber@trash.net>
5 * Development of this code funded by Astaro AG (http://www.astaro.com/)
8 #include <linux/kernel.h>
9 #include <linux/init.h>
10 #include <linux/module.h>
11 #include <linux/netlink.h>
12 #include <linux/netfilter.h>
13 #include <linux/netfilter/nf_tables.h>
14 #include <net/netfilter/nf_tables_core.h>
15 #include <net/netfilter/nf_tables.h>
16 #include <net/netfilter/nf_tables_offload.h>
18 void nft_immediate_eval(const struct nft_expr
*expr
,
19 struct nft_regs
*regs
,
20 const struct nft_pktinfo
*pkt
)
22 const struct nft_immediate_expr
*priv
= nft_expr_priv(expr
);
24 nft_data_copy(®s
->data
[priv
->dreg
], &priv
->data
, priv
->dlen
);
27 static const struct nla_policy nft_immediate_policy
[NFTA_IMMEDIATE_MAX
+ 1] = {
28 [NFTA_IMMEDIATE_DREG
] = { .type
= NLA_U32
},
29 [NFTA_IMMEDIATE_DATA
] = { .type
= NLA_NESTED
},
32 static int nft_immediate_init(const struct nft_ctx
*ctx
,
33 const struct nft_expr
*expr
,
34 const struct nlattr
* const tb
[])
36 struct nft_immediate_expr
*priv
= nft_expr_priv(expr
);
37 struct nft_data_desc desc
;
40 if (tb
[NFTA_IMMEDIATE_DREG
] == NULL
||
41 tb
[NFTA_IMMEDIATE_DATA
] == NULL
)
44 err
= nft_data_init(ctx
, &priv
->data
, sizeof(priv
->data
), &desc
,
45 tb
[NFTA_IMMEDIATE_DATA
]);
49 priv
->dlen
= desc
.len
;
51 priv
->dreg
= nft_parse_register(tb
[NFTA_IMMEDIATE_DREG
]);
52 err
= nft_validate_register_store(ctx
, priv
->dreg
, &priv
->data
,
57 if (priv
->dreg
== NFT_REG_VERDICT
) {
58 struct nft_chain
*chain
= priv
->data
.verdict
.chain
;
60 switch (priv
->data
.verdict
.code
) {
63 if (nft_chain_is_bound(chain
)) {
77 nft_data_release(&priv
->data
, desc
.type
);
81 static void nft_immediate_activate(const struct nft_ctx
*ctx
,
82 const struct nft_expr
*expr
)
84 const struct nft_immediate_expr
*priv
= nft_expr_priv(expr
);
86 return nft_data_hold(&priv
->data
, nft_dreg_to_type(priv
->dreg
));
89 static void nft_immediate_deactivate(const struct nft_ctx
*ctx
,
90 const struct nft_expr
*expr
,
91 enum nft_trans_phase phase
)
93 const struct nft_immediate_expr
*priv
= nft_expr_priv(expr
);
95 if (phase
== NFT_TRANS_COMMIT
)
98 return nft_data_release(&priv
->data
, nft_dreg_to_type(priv
->dreg
));
101 static void nft_immediate_destroy(const struct nft_ctx
*ctx
,
102 const struct nft_expr
*expr
)
104 const struct nft_immediate_expr
*priv
= nft_expr_priv(expr
);
105 const struct nft_data
*data
= &priv
->data
;
106 struct nft_rule
*rule
, *n
;
107 struct nft_ctx chain_ctx
;
108 struct nft_chain
*chain
;
110 if (priv
->dreg
!= NFT_REG_VERDICT
)
113 switch (data
->verdict
.code
) {
116 chain
= data
->verdict
.chain
;
118 if (!nft_chain_is_bound(chain
))
122 chain_ctx
.chain
= chain
;
124 list_for_each_entry_safe(rule
, n
, &chain
->rules
, list
)
125 nf_tables_rule_release(&chain_ctx
, rule
);
127 nf_tables_chain_destroy(&chain_ctx
);
134 static int nft_immediate_dump(struct sk_buff
*skb
, const struct nft_expr
*expr
)
136 const struct nft_immediate_expr
*priv
= nft_expr_priv(expr
);
138 if (nft_dump_register(skb
, NFTA_IMMEDIATE_DREG
, priv
->dreg
))
139 goto nla_put_failure
;
141 return nft_data_dump(skb
, NFTA_IMMEDIATE_DATA
, &priv
->data
,
142 nft_dreg_to_type(priv
->dreg
), priv
->dlen
);
148 static int nft_immediate_validate(const struct nft_ctx
*ctx
,
149 const struct nft_expr
*expr
,
150 const struct nft_data
**d
)
152 const struct nft_immediate_expr
*priv
= nft_expr_priv(expr
);
153 struct nft_ctx
*pctx
= (struct nft_ctx
*)ctx
;
154 const struct nft_data
*data
;
157 if (priv
->dreg
!= NFT_REG_VERDICT
)
162 switch (data
->verdict
.code
) {
166 err
= nft_chain_validate(ctx
, data
->verdict
.chain
);
178 static int nft_immediate_offload_verdict(struct nft_offload_ctx
*ctx
,
179 struct nft_flow_rule
*flow
,
180 const struct nft_immediate_expr
*priv
)
182 struct flow_action_entry
*entry
;
183 const struct nft_data
*data
;
185 entry
= &flow
->rule
->action
.entries
[ctx
->num_actions
++];
188 switch (data
->verdict
.code
) {
190 entry
->id
= FLOW_ACTION_ACCEPT
;
193 entry
->id
= FLOW_ACTION_DROP
;
202 static int nft_immediate_offload(struct nft_offload_ctx
*ctx
,
203 struct nft_flow_rule
*flow
,
204 const struct nft_expr
*expr
)
206 const struct nft_immediate_expr
*priv
= nft_expr_priv(expr
);
208 if (priv
->dreg
== NFT_REG_VERDICT
)
209 return nft_immediate_offload_verdict(ctx
, flow
, priv
);
211 memcpy(&ctx
->regs
[priv
->dreg
].data
, &priv
->data
, sizeof(priv
->data
));
216 static const struct nft_expr_ops nft_imm_ops
= {
217 .type
= &nft_imm_type
,
218 .size
= NFT_EXPR_SIZE(sizeof(struct nft_immediate_expr
)),
219 .eval
= nft_immediate_eval
,
220 .init
= nft_immediate_init
,
221 .activate
= nft_immediate_activate
,
222 .deactivate
= nft_immediate_deactivate
,
223 .destroy
= nft_immediate_destroy
,
224 .dump
= nft_immediate_dump
,
225 .validate
= nft_immediate_validate
,
226 .offload
= nft_immediate_offload
,
227 .offload_flags
= NFT_OFFLOAD_F_ACTION
,
230 struct nft_expr_type nft_imm_type __read_mostly
= {
233 .policy
= nft_immediate_policy
,
234 .maxattr
= NFTA_IMMEDIATE_MAX
,
235 .owner
= THIS_MODULE
,