]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/netfilter/nft_payload.c
netfilter: nf_tables: validate len in nft_validate_data_load()
[mirror_ubuntu-bionic-kernel.git] / net / netfilter / nft_payload.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
96518518
PM
20static void nft_payload_eval(const struct nft_expr *expr,
21 struct nft_data data[NFT_REG_MAX + 1],
22 const struct nft_pktinfo *pkt)
23{
24 const struct nft_payload *priv = nft_expr_priv(expr);
25 const struct sk_buff *skb = pkt->skb;
26 struct nft_data *dest = &data[priv->dreg];
27 int offset;
28
29 switch (priv->base) {
30 case NFT_PAYLOAD_LL_HEADER:
31 if (!skb_mac_header_was_set(skb))
32 goto err;
33 offset = skb_mac_header(skb) - skb->data;
34 break;
35 case NFT_PAYLOAD_NETWORK_HEADER:
36 offset = skb_network_offset(skb);
37 break;
38 case NFT_PAYLOAD_TRANSPORT_HEADER:
c54032e0 39 offset = pkt->xt.thoff;
96518518
PM
40 break;
41 default:
42 BUG();
43 }
44 offset += priv->offset;
45
46 if (skb_copy_bits(skb, offset, dest->data, priv->len) < 0)
47 goto err;
48 return;
49err:
50 data[NFT_REG_VERDICT].verdict = NFT_BREAK;
51}
52
53static const struct nla_policy nft_payload_policy[NFTA_PAYLOAD_MAX + 1] = {
54 [NFTA_PAYLOAD_DREG] = { .type = NLA_U32 },
55 [NFTA_PAYLOAD_BASE] = { .type = NLA_U32 },
56 [NFTA_PAYLOAD_OFFSET] = { .type = NLA_U32 },
57 [NFTA_PAYLOAD_LEN] = { .type = NLA_U32 },
58};
59
60static int nft_payload_init(const struct nft_ctx *ctx,
61 const struct nft_expr *expr,
62 const struct nlattr * const tb[])
63{
64 struct nft_payload *priv = nft_expr_priv(expr);
65 int err;
66
c29b72e0 67 priv->base = ntohl(nla_get_be32(tb[NFTA_PAYLOAD_BASE]));
96518518
PM
68 priv->offset = ntohl(nla_get_be32(tb[NFTA_PAYLOAD_OFFSET]));
69 priv->len = ntohl(nla_get_be32(tb[NFTA_PAYLOAD_LEN]));
96518518
PM
70
71 priv->dreg = ntohl(nla_get_be32(tb[NFTA_PAYLOAD_DREG]));
72 err = nft_validate_output_register(priv->dreg);
73 if (err < 0)
74 return err;
45d9bcda
PM
75 return nft_validate_data_load(ctx, priv->dreg, NULL,
76 NFT_DATA_VALUE, priv->len);
96518518
PM
77}
78
79static int nft_payload_dump(struct sk_buff *skb, const struct nft_expr *expr)
80{
81 const struct nft_payload *priv = nft_expr_priv(expr);
82
83 if (nla_put_be32(skb, NFTA_PAYLOAD_DREG, htonl(priv->dreg)) ||
84 nla_put_be32(skb, NFTA_PAYLOAD_BASE, htonl(priv->base)) ||
85 nla_put_be32(skb, NFTA_PAYLOAD_OFFSET, htonl(priv->offset)) ||
86 nla_put_be32(skb, NFTA_PAYLOAD_LEN, htonl(priv->len)))
87 goto nla_put_failure;
88 return 0;
89
90nla_put_failure:
91 return -1;
92}
93
ef1f7df9
PM
94static struct nft_expr_type nft_payload_type;
95static const struct nft_expr_ops nft_payload_ops = {
96 .type = &nft_payload_type,
96518518 97 .size = NFT_EXPR_SIZE(sizeof(struct nft_payload)),
96518518
PM
98 .eval = nft_payload_eval,
99 .init = nft_payload_init,
100 .dump = nft_payload_dump,
ef1f7df9
PM
101};
102
c29b72e0
PM
103const struct nft_expr_ops nft_payload_fast_ops = {
104 .type = &nft_payload_type,
105 .size = NFT_EXPR_SIZE(sizeof(struct nft_payload)),
106 .eval = nft_payload_eval,
107 .init = nft_payload_init,
108 .dump = nft_payload_dump,
109};
110
0ca743a5
PNA
111static const struct nft_expr_ops *
112nft_payload_select_ops(const struct nft_ctx *ctx,
113 const struct nlattr * const tb[])
c29b72e0
PM
114{
115 enum nft_payload_bases base;
116 unsigned int offset, len;
117
118 if (tb[NFTA_PAYLOAD_DREG] == NULL ||
119 tb[NFTA_PAYLOAD_BASE] == NULL ||
120 tb[NFTA_PAYLOAD_OFFSET] == NULL ||
121 tb[NFTA_PAYLOAD_LEN] == NULL)
122 return ERR_PTR(-EINVAL);
123
124 base = ntohl(nla_get_be32(tb[NFTA_PAYLOAD_BASE]));
125 switch (base) {
126 case NFT_PAYLOAD_LL_HEADER:
127 case NFT_PAYLOAD_NETWORK_HEADER:
128 case NFT_PAYLOAD_TRANSPORT_HEADER:
129 break;
130 default:
131 return ERR_PTR(-EOPNOTSUPP);
132 }
133
134 offset = ntohl(nla_get_be32(tb[NFTA_PAYLOAD_OFFSET]));
45d9bcda 135 len = ntohl(nla_get_be32(tb[NFTA_PAYLOAD_LEN]));
c29b72e0 136
f627ed91
NA
137 if (len <= 4 && is_power_of_2(len) && IS_ALIGNED(offset, len) &&
138 base != NFT_PAYLOAD_LL_HEADER)
c29b72e0
PM
139 return &nft_payload_fast_ops;
140 else
141 return &nft_payload_ops;
142}
143
ef1f7df9
PM
144static struct nft_expr_type nft_payload_type __read_mostly = {
145 .name = "payload",
c29b72e0 146 .select_ops = nft_payload_select_ops,
96518518
PM
147 .policy = nft_payload_policy,
148 .maxattr = NFTA_PAYLOAD_MAX,
ef1f7df9 149 .owner = THIS_MODULE,
96518518
PM
150};
151
152int __init nft_payload_module_init(void)
153{
ef1f7df9 154 return nft_register_expr(&nft_payload_type);
96518518
PM
155}
156
157void nft_payload_module_exit(void)
158{
ef1f7df9 159 nft_unregister_expr(&nft_payload_type);
96518518 160}