blob: e8c89d2d2bc044ded2223593cb22b893ce8d6758 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Linux Socket Filter - Kernel level socket filtering
3 *
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +01004 * Based on the design of the Berkeley Packet Filter. The new
5 * internal format has been designed by PLUMgrid:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +01007 * Copyright (c) 2011 - 2014 PLUMgrid, http://plumgrid.com
8 *
9 * Authors:
10 *
11 * Jay Schulist <jschlst@samba.org>
12 * Alexei Starovoitov <ast@plumgrid.com>
13 * Daniel Borkmann <dborkman@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version
18 * 2 of the License, or (at your option) any later version.
19 *
20 * Andi Kleen - Fix a few bad bugs and races.
Alexei Starovoitov4df95ff2014-07-30 20:34:14 -070021 * Kris Katterjohn - Added many additional checks in bpf_check_classic()
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 */
23
24#include <linux/module.h>
25#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/mm.h>
27#include <linux/fcntl.h>
28#include <linux/socket.h>
29#include <linux/in.h>
30#include <linux/inet.h>
31#include <linux/netdevice.h>
32#include <linux/if_packet.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <net/ip.h>
35#include <net/protocol.h>
Patrick McHardy4738c1d2008-04-10 02:02:28 -070036#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/skbuff.h>
38#include <net/sock.h>
Jiri Pirko10b89ee42015-05-12 14:56:09 +020039#include <net/flow_dissector.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/errno.h>
41#include <linux/timer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/uaccess.h>
Dmitry Mishin40daafc2006-04-18 14:50:10 -070043#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/filter.h>
David S. Miller86e4ca62011-05-26 15:00:31 -040045#include <linux/ratelimit.h>
Will Drewry46b325c2012-04-12 16:47:52 -050046#include <linux/seccomp.h>
Eric Dumazetf3335032012-10-27 02:26:17 +000047#include <linux/if_vlan.h>
Alexei Starovoitov89aa0752014-12-01 15:06:35 -080048#include <linux/bpf.h>
Alexei Starovoitovd691f9e2015-06-04 10:11:54 -070049#include <net/sch_generic.h>
Daniel Borkmann8d20aab2015-07-15 14:21:42 +020050#include <net/cls_cgroup.h>
Alexei Starovoitovd3aa45c2015-07-30 15:36:57 -070051#include <net/dst_metadata.h>
Daniel Borkmannc46646d2015-09-30 01:41:51 +020052#include <net/dst.h>
Craig Gallek538950a2016-01-04 17:41:47 -050053#include <net/sock_reuseport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055/**
Willem de Bruijnf4979fc2016-07-12 18:18:56 -040056 * sk_filter_trim_cap - run a packet through a socket filter
Stephen Hemminger43db6d62008-04-10 01:43:09 -070057 * @sk: sock associated with &sk_buff
58 * @skb: buffer to filter
Willem de Bruijnf4979fc2016-07-12 18:18:56 -040059 * @cap: limit on how short the eBPF program may trim the packet
Stephen Hemminger43db6d62008-04-10 01:43:09 -070060 *
Alexei Starovoitovff936a02015-10-07 10:55:41 -070061 * Run the eBPF program and then cut skb->data to correct size returned by
62 * the program. If pkt_len is 0 we toss packet. If skb->len is smaller
Stephen Hemminger43db6d62008-04-10 01:43:09 -070063 * than pkt_len we keep whole skb->data. This is the socket level
Alexei Starovoitovff936a02015-10-07 10:55:41 -070064 * wrapper to BPF_PROG_RUN. It returns 0 if the packet should
Stephen Hemminger43db6d62008-04-10 01:43:09 -070065 * be accepted or -EPERM if the packet should be tossed.
66 *
67 */
Willem de Bruijnf4979fc2016-07-12 18:18:56 -040068int sk_filter_trim_cap(struct sock *sk, struct sk_buff *skb, unsigned int cap)
Stephen Hemminger43db6d62008-04-10 01:43:09 -070069{
70 int err;
71 struct sk_filter *filter;
72
Mel Gormanc93bdd02012-07-31 16:44:19 -070073 /*
74 * If the skb was allocated from pfmemalloc reserves, only
75 * allow SOCK_MEMALLOC sockets to use it as this socket is
76 * helping free memory
77 */
78 if (skb_pfmemalloc(skb) && !sock_flag(sk, SOCK_MEMALLOC))
79 return -ENOMEM;
80
Stephen Hemminger43db6d62008-04-10 01:43:09 -070081 err = security_sock_rcv_skb(sk, skb);
82 if (err)
83 return err;
84
Eric Dumazet80f8f102011-01-18 07:46:52 +000085 rcu_read_lock();
86 filter = rcu_dereference(sk->sk_filter);
Stephen Hemminger43db6d62008-04-10 01:43:09 -070087 if (filter) {
Alexei Starovoitovff936a02015-10-07 10:55:41 -070088 unsigned int pkt_len = bpf_prog_run_save_cb(filter->prog, skb);
Willem de Bruijnf4979fc2016-07-12 18:18:56 -040089 err = pkt_len ? pskb_trim(skb, max(cap, pkt_len)) : -EPERM;
Stephen Hemminger43db6d62008-04-10 01:43:09 -070090 }
Eric Dumazet80f8f102011-01-18 07:46:52 +000091 rcu_read_unlock();
Stephen Hemminger43db6d62008-04-10 01:43:09 -070092
93 return err;
94}
Willem de Bruijnf4979fc2016-07-12 18:18:56 -040095EXPORT_SYMBOL(sk_filter_trim_cap);
Stephen Hemminger43db6d62008-04-10 01:43:09 -070096
Daniel Borkmannf3694e02016-09-09 02:45:31 +020097BPF_CALL_1(__skb_get_pay_offset, struct sk_buff *, skb)
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +010098{
Daniel Borkmannf3694e02016-09-09 02:45:31 +020099 return skb_get_poff(skb);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100100}
101
Daniel Borkmannf3694e02016-09-09 02:45:31 +0200102BPF_CALL_3(__skb_get_nlattr, struct sk_buff *, skb, u32, a, u32, x)
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100103{
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100104 struct nlattr *nla;
105
106 if (skb_is_nonlinear(skb))
107 return 0;
108
Mathias Krause05ab8f22014-04-13 18:23:33 +0200109 if (skb->len < sizeof(struct nlattr))
110 return 0;
111
Daniel Borkmann30743832014-05-01 18:34:19 +0200112 if (a > skb->len - sizeof(struct nlattr))
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100113 return 0;
114
Daniel Borkmann30743832014-05-01 18:34:19 +0200115 nla = nla_find((struct nlattr *) &skb->data[a], skb->len - a, x);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100116 if (nla)
117 return (void *) nla - (void *) skb->data;
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 return 0;
120}
121
Daniel Borkmannf3694e02016-09-09 02:45:31 +0200122BPF_CALL_3(__skb_get_nlattr_nest, struct sk_buff *, skb, u32, a, u32, x)
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100123{
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100124 struct nlattr *nla;
125
126 if (skb_is_nonlinear(skb))
127 return 0;
128
Mathias Krause05ab8f22014-04-13 18:23:33 +0200129 if (skb->len < sizeof(struct nlattr))
130 return 0;
131
Daniel Borkmann30743832014-05-01 18:34:19 +0200132 if (a > skb->len - sizeof(struct nlattr))
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100133 return 0;
134
Daniel Borkmann30743832014-05-01 18:34:19 +0200135 nla = (struct nlattr *) &skb->data[a];
136 if (nla->nla_len > skb->len - a)
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100137 return 0;
138
Daniel Borkmann30743832014-05-01 18:34:19 +0200139 nla = nla_find_nested(nla, x);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100140 if (nla)
141 return (void *) nla - (void *) skb->data;
142
143 return 0;
144}
145
Daniel Borkmannf3694e02016-09-09 02:45:31 +0200146BPF_CALL_0(__get_raw_cpu_id)
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100147{
148 return raw_smp_processor_id();
149}
150
Daniel Borkmann80b48c42016-06-28 12:18:26 +0200151static const struct bpf_func_proto bpf_get_raw_smp_processor_id_proto = {
152 .func = __get_raw_cpu_id,
153 .gpl_only = false,
154 .ret_type = RET_INTEGER,
155};
156
Alexei Starovoitov9bac3d62015-03-13 11:57:42 -0700157static u32 convert_skb_access(int skb_field, int dst_reg, int src_reg,
158 struct bpf_insn *insn_buf)
159{
160 struct bpf_insn *insn = insn_buf;
161
162 switch (skb_field) {
163 case SKF_AD_MARK:
164 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, mark) != 4);
165
166 *insn++ = BPF_LDX_MEM(BPF_W, dst_reg, src_reg,
167 offsetof(struct sk_buff, mark));
168 break;
169
170 case SKF_AD_PKTTYPE:
171 *insn++ = BPF_LDX_MEM(BPF_B, dst_reg, src_reg, PKT_TYPE_OFFSET());
172 *insn++ = BPF_ALU32_IMM(BPF_AND, dst_reg, PKT_TYPE_MAX);
173#ifdef __BIG_ENDIAN_BITFIELD
174 *insn++ = BPF_ALU32_IMM(BPF_RSH, dst_reg, 5);
175#endif
176 break;
177
178 case SKF_AD_QUEUE:
179 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, queue_mapping) != 2);
180
181 *insn++ = BPF_LDX_MEM(BPF_H, dst_reg, src_reg,
182 offsetof(struct sk_buff, queue_mapping));
183 break;
Alexei Starovoitovc2497392015-03-16 18:06:02 -0700184
Alexei Starovoitovc2497392015-03-16 18:06:02 -0700185 case SKF_AD_VLAN_TAG:
186 case SKF_AD_VLAN_TAG_PRESENT:
187 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, vlan_tci) != 2);
188 BUILD_BUG_ON(VLAN_TAG_PRESENT != 0x1000);
189
190 /* dst_reg = *(u16 *) (src_reg + offsetof(vlan_tci)) */
191 *insn++ = BPF_LDX_MEM(BPF_H, dst_reg, src_reg,
192 offsetof(struct sk_buff, vlan_tci));
193 if (skb_field == SKF_AD_VLAN_TAG) {
194 *insn++ = BPF_ALU32_IMM(BPF_AND, dst_reg,
195 ~VLAN_TAG_PRESENT);
196 } else {
197 /* dst_reg >>= 12 */
198 *insn++ = BPF_ALU32_IMM(BPF_RSH, dst_reg, 12);
199 /* dst_reg &= 1 */
200 *insn++ = BPF_ALU32_IMM(BPF_AND, dst_reg, 1);
201 }
202 break;
Alexei Starovoitov9bac3d62015-03-13 11:57:42 -0700203 }
204
205 return insn - insn_buf;
206}
207
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100208static bool convert_bpf_extensions(struct sock_filter *fp,
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700209 struct bpf_insn **insnp)
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100210{
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700211 struct bpf_insn *insn = *insnp;
Alexei Starovoitov9bac3d62015-03-13 11:57:42 -0700212 u32 cnt;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100213
214 switch (fp->k) {
215 case SKF_AD_OFF + SKF_AD_PROTOCOL:
Daniel Borkmann0b8c7072015-03-19 19:38:27 +0100216 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, protocol) != 2);
217
218 /* A = *(u16 *) (CTX + offsetof(protocol)) */
219 *insn++ = BPF_LDX_MEM(BPF_H, BPF_REG_A, BPF_REG_CTX,
220 offsetof(struct sk_buff, protocol));
221 /* A = ntohs(A) [emitting a nop or swap16] */
222 *insn = BPF_ENDIAN(BPF_FROM_BE, BPF_REG_A, 16);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100223 break;
224
225 case SKF_AD_OFF + SKF_AD_PKTTYPE:
Alexei Starovoitov9bac3d62015-03-13 11:57:42 -0700226 cnt = convert_skb_access(SKF_AD_PKTTYPE, BPF_REG_A, BPF_REG_CTX, insn);
227 insn += cnt - 1;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100228 break;
229
230 case SKF_AD_OFF + SKF_AD_IFINDEX:
231 case SKF_AD_OFF + SKF_AD_HATYPE:
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100232 BUILD_BUG_ON(FIELD_SIZEOF(struct net_device, ifindex) != 4);
233 BUILD_BUG_ON(FIELD_SIZEOF(struct net_device, type) != 2);
234
Daniel Borkmannf035a512016-09-09 02:45:29 +0200235 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct sk_buff, dev),
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200236 BPF_REG_TMP, BPF_REG_CTX,
237 offsetof(struct sk_buff, dev));
238 /* if (tmp != 0) goto pc + 1 */
239 *insn++ = BPF_JMP_IMM(BPF_JNE, BPF_REG_TMP, 0, 1);
240 *insn++ = BPF_EXIT_INSN();
241 if (fp->k == SKF_AD_OFF + SKF_AD_IFINDEX)
242 *insn = BPF_LDX_MEM(BPF_W, BPF_REG_A, BPF_REG_TMP,
243 offsetof(struct net_device, ifindex));
244 else
245 *insn = BPF_LDX_MEM(BPF_H, BPF_REG_A, BPF_REG_TMP,
246 offsetof(struct net_device, type));
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100247 break;
248
249 case SKF_AD_OFF + SKF_AD_MARK:
Alexei Starovoitov9bac3d62015-03-13 11:57:42 -0700250 cnt = convert_skb_access(SKF_AD_MARK, BPF_REG_A, BPF_REG_CTX, insn);
251 insn += cnt - 1;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100252 break;
253
254 case SKF_AD_OFF + SKF_AD_RXHASH:
255 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, hash) != 4);
256
Alexei Starovoitov9739eef2014-05-08 14:10:51 -0700257 *insn = BPF_LDX_MEM(BPF_W, BPF_REG_A, BPF_REG_CTX,
258 offsetof(struct sk_buff, hash));
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100259 break;
260
261 case SKF_AD_OFF + SKF_AD_QUEUE:
Alexei Starovoitov9bac3d62015-03-13 11:57:42 -0700262 cnt = convert_skb_access(SKF_AD_QUEUE, BPF_REG_A, BPF_REG_CTX, insn);
263 insn += cnt - 1;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100264 break;
265
266 case SKF_AD_OFF + SKF_AD_VLAN_TAG:
Alexei Starovoitovc2497392015-03-16 18:06:02 -0700267 cnt = convert_skb_access(SKF_AD_VLAN_TAG,
268 BPF_REG_A, BPF_REG_CTX, insn);
269 insn += cnt - 1;
270 break;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100271
Alexei Starovoitovc2497392015-03-16 18:06:02 -0700272 case SKF_AD_OFF + SKF_AD_VLAN_TAG_PRESENT:
273 cnt = convert_skb_access(SKF_AD_VLAN_TAG_PRESENT,
274 BPF_REG_A, BPF_REG_CTX, insn);
275 insn += cnt - 1;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100276 break;
277
Michal Sekletar27cd5452015-03-24 14:48:41 +0100278 case SKF_AD_OFF + SKF_AD_VLAN_TPID:
279 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, vlan_proto) != 2);
280
281 /* A = *(u16 *) (CTX + offsetof(vlan_proto)) */
282 *insn++ = BPF_LDX_MEM(BPF_H, BPF_REG_A, BPF_REG_CTX,
283 offsetof(struct sk_buff, vlan_proto));
284 /* A = ntohs(A) [emitting a nop or swap16] */
285 *insn = BPF_ENDIAN(BPF_FROM_BE, BPF_REG_A, 16);
286 break;
287
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100288 case SKF_AD_OFF + SKF_AD_PAY_OFFSET:
289 case SKF_AD_OFF + SKF_AD_NLATTR:
290 case SKF_AD_OFF + SKF_AD_NLATTR_NEST:
291 case SKF_AD_OFF + SKF_AD_CPU:
Chema Gonzalez4cd36752014-04-21 09:21:24 -0700292 case SKF_AD_OFF + SKF_AD_RANDOM:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700293 /* arg1 = CTX */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200294 *insn++ = BPF_MOV64_REG(BPF_REG_ARG1, BPF_REG_CTX);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100295 /* arg2 = A */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200296 *insn++ = BPF_MOV64_REG(BPF_REG_ARG2, BPF_REG_A);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100297 /* arg3 = X */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200298 *insn++ = BPF_MOV64_REG(BPF_REG_ARG3, BPF_REG_X);
Alexei Starovoitove430f342014-06-06 14:46:06 -0700299 /* Emit call(arg1=CTX, arg2=A, arg3=X) */
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100300 switch (fp->k) {
301 case SKF_AD_OFF + SKF_AD_PAY_OFFSET:
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200302 *insn = BPF_EMIT_CALL(__skb_get_pay_offset);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100303 break;
304 case SKF_AD_OFF + SKF_AD_NLATTR:
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200305 *insn = BPF_EMIT_CALL(__skb_get_nlattr);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100306 break;
307 case SKF_AD_OFF + SKF_AD_NLATTR_NEST:
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200308 *insn = BPF_EMIT_CALL(__skb_get_nlattr_nest);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100309 break;
310 case SKF_AD_OFF + SKF_AD_CPU:
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200311 *insn = BPF_EMIT_CALL(__get_raw_cpu_id);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100312 break;
Chema Gonzalez4cd36752014-04-21 09:21:24 -0700313 case SKF_AD_OFF + SKF_AD_RANDOM:
Daniel Borkmann3ad00402015-10-08 01:20:39 +0200314 *insn = BPF_EMIT_CALL(bpf_user_rnd_u32);
315 bpf_user_rnd_init_once();
Chema Gonzalez4cd36752014-04-21 09:21:24 -0700316 break;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100317 }
318 break;
319
320 case SKF_AD_OFF + SKF_AD_ALU_XOR_X:
Alexei Starovoitov9739eef2014-05-08 14:10:51 -0700321 /* A ^= X */
322 *insn = BPF_ALU32_REG(BPF_XOR, BPF_REG_A, BPF_REG_X);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100323 break;
324
325 default:
326 /* This is just a dummy call to avoid letting the compiler
327 * evict __bpf_call_base() as an optimization. Placed here
328 * where no-one bothers.
329 */
330 BUG_ON(__bpf_call_base(0, 0, 0, 0, 0) != 0);
331 return false;
332 }
333
334 *insnp = insn;
335 return true;
336}
337
338/**
Alexei Starovoitov8fb575c2014-07-30 20:34:15 -0700339 * bpf_convert_filter - convert filter program
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100340 * @prog: the user passed filter program
341 * @len: the length of the user passed filter program
342 * @new_prog: buffer where converted program will be stored
343 * @new_len: pointer to store length of converted program
344 *
345 * Remap 'sock_filter' style BPF instruction set to 'sock_filter_ext' style.
346 * Conversion workflow:
347 *
348 * 1) First pass for calculating the new program length:
Alexei Starovoitov8fb575c2014-07-30 20:34:15 -0700349 * bpf_convert_filter(old_prog, old_len, NULL, &new_len)
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100350 *
351 * 2) 2nd pass to remap in two passes: 1st pass finds new
352 * jump offsets, 2nd pass remapping:
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700353 * new_prog = kmalloc(sizeof(struct bpf_insn) * new_len);
Alexei Starovoitov8fb575c2014-07-30 20:34:15 -0700354 * bpf_convert_filter(old_prog, old_len, new_prog, &new_len);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100355 */
Nicolas Schichand9e12f42015-05-06 16:12:28 +0200356static int bpf_convert_filter(struct sock_filter *prog, int len,
357 struct bpf_insn *new_prog, int *new_len)
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100358{
359 int new_flen = 0, pass = 0, target, i;
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700360 struct bpf_insn *new_insn;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100361 struct sock_filter *fp;
362 int *addrs = NULL;
363 u8 bpf_src;
364
365 BUILD_BUG_ON(BPF_MEMWORDS * sizeof(u32) > MAX_BPF_STACK);
Daniel Borkmann30743832014-05-01 18:34:19 +0200366 BUILD_BUG_ON(BPF_REG_FP + 1 != MAX_BPF_REG);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100367
Kees Cook6f9a0932014-06-18 15:34:57 -0700368 if (len <= 0 || len > BPF_MAXINSNS)
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100369 return -EINVAL;
370
371 if (new_prog) {
Daniel Borkmann658da932015-05-06 16:12:29 +0200372 addrs = kcalloc(len, sizeof(*addrs),
373 GFP_KERNEL | __GFP_NOWARN);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100374 if (!addrs)
375 return -ENOMEM;
376 }
377
378do_pass:
379 new_insn = new_prog;
380 fp = prog;
381
Daniel Borkmann8b614ae2015-12-17 23:51:54 +0100382 /* Classic BPF related prologue emission. */
383 if (new_insn) {
384 /* Classic BPF expects A and X to be reset first. These need
385 * to be guaranteed to be the first two instructions.
386 */
387 *new_insn++ = BPF_ALU64_REG(BPF_XOR, BPF_REG_A, BPF_REG_A);
388 *new_insn++ = BPF_ALU64_REG(BPF_XOR, BPF_REG_X, BPF_REG_X);
389
390 /* All programs must keep CTX in callee saved BPF_REG_CTX.
391 * In eBPF case it's done by the compiler, here we need to
392 * do this ourself. Initial CTX is present in BPF_REG_ARG1.
393 */
394 *new_insn++ = BPF_MOV64_REG(BPF_REG_CTX, BPF_REG_ARG1);
395 } else {
396 new_insn += 3;
397 }
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100398
399 for (i = 0; i < len; fp++, i++) {
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700400 struct bpf_insn tmp_insns[6] = { };
401 struct bpf_insn *insn = tmp_insns;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100402
403 if (addrs)
404 addrs[i] = new_insn - new_prog;
405
406 switch (fp->code) {
407 /* All arithmetic insns and skb loads map as-is. */
408 case BPF_ALU | BPF_ADD | BPF_X:
409 case BPF_ALU | BPF_ADD | BPF_K:
410 case BPF_ALU | BPF_SUB | BPF_X:
411 case BPF_ALU | BPF_SUB | BPF_K:
412 case BPF_ALU | BPF_AND | BPF_X:
413 case BPF_ALU | BPF_AND | BPF_K:
414 case BPF_ALU | BPF_OR | BPF_X:
415 case BPF_ALU | BPF_OR | BPF_K:
416 case BPF_ALU | BPF_LSH | BPF_X:
417 case BPF_ALU | BPF_LSH | BPF_K:
418 case BPF_ALU | BPF_RSH | BPF_X:
419 case BPF_ALU | BPF_RSH | BPF_K:
420 case BPF_ALU | BPF_XOR | BPF_X:
421 case BPF_ALU | BPF_XOR | BPF_K:
422 case BPF_ALU | BPF_MUL | BPF_X:
423 case BPF_ALU | BPF_MUL | BPF_K:
424 case BPF_ALU | BPF_DIV | BPF_X:
425 case BPF_ALU | BPF_DIV | BPF_K:
426 case BPF_ALU | BPF_MOD | BPF_X:
427 case BPF_ALU | BPF_MOD | BPF_K:
428 case BPF_ALU | BPF_NEG:
429 case BPF_LD | BPF_ABS | BPF_W:
430 case BPF_LD | BPF_ABS | BPF_H:
431 case BPF_LD | BPF_ABS | BPF_B:
432 case BPF_LD | BPF_IND | BPF_W:
433 case BPF_LD | BPF_IND | BPF_H:
434 case BPF_LD | BPF_IND | BPF_B:
435 /* Check for overloaded BPF extension and
436 * directly convert it if found, otherwise
437 * just move on with mapping.
438 */
439 if (BPF_CLASS(fp->code) == BPF_LD &&
440 BPF_MODE(fp->code) == BPF_ABS &&
441 convert_bpf_extensions(fp, &insn))
442 break;
443
Alexei Starovoitov265d7652018-01-29 02:49:00 +0100444 if (fp->code == (BPF_ALU | BPF_DIV | BPF_X) ||
445 fp->code == (BPF_ALU | BPF_MOD | BPF_X))
446 *insn++ = BPF_MOV32_REG(BPF_REG_X, BPF_REG_X);
447
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200448 *insn = BPF_RAW_INSN(fp->code, BPF_REG_A, BPF_REG_X, 0, fp->k);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100449 break;
450
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200451 /* Jump transformation cannot use BPF block macros
452 * everywhere as offset calculation and target updates
453 * require a bit more work than the rest, i.e. jump
454 * opcodes map as-is, but offsets need adjustment.
455 */
456
457#define BPF_EMIT_JMP \
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100458 do { \
459 if (target >= len || target < 0) \
460 goto err; \
461 insn->off = addrs ? addrs[target] - addrs[i] - 1 : 0; \
462 /* Adjust pc relative offset for 2nd or 3rd insn. */ \
463 insn->off -= insn - tmp_insns; \
464 } while (0)
465
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200466 case BPF_JMP | BPF_JA:
467 target = i + fp->k + 1;
468 insn->code = fp->code;
469 BPF_EMIT_JMP;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100470 break;
471
472 case BPF_JMP | BPF_JEQ | BPF_K:
473 case BPF_JMP | BPF_JEQ | BPF_X:
474 case BPF_JMP | BPF_JSET | BPF_K:
475 case BPF_JMP | BPF_JSET | BPF_X:
476 case BPF_JMP | BPF_JGT | BPF_K:
477 case BPF_JMP | BPF_JGT | BPF_X:
478 case BPF_JMP | BPF_JGE | BPF_K:
479 case BPF_JMP | BPF_JGE | BPF_X:
480 if (BPF_SRC(fp->code) == BPF_K && (int) fp->k < 0) {
481 /* BPF immediates are signed, zero extend
482 * immediate into tmp register and use it
483 * in compare insn.
484 */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200485 *insn++ = BPF_MOV32_IMM(BPF_REG_TMP, fp->k);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100486
Alexei Starovoitove430f342014-06-06 14:46:06 -0700487 insn->dst_reg = BPF_REG_A;
488 insn->src_reg = BPF_REG_TMP;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100489 bpf_src = BPF_X;
490 } else {
Alexei Starovoitove430f342014-06-06 14:46:06 -0700491 insn->dst_reg = BPF_REG_A;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100492 insn->imm = fp->k;
493 bpf_src = BPF_SRC(fp->code);
Tycho Andersen19539ce2015-09-10 18:25:07 -0600494 insn->src_reg = bpf_src == BPF_X ? BPF_REG_X : 0;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100495 }
496
497 /* Common case where 'jump_false' is next insn. */
498 if (fp->jf == 0) {
499 insn->code = BPF_JMP | BPF_OP(fp->code) | bpf_src;
500 target = i + fp->jt + 1;
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200501 BPF_EMIT_JMP;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100502 break;
503 }
504
505 /* Convert JEQ into JNE when 'jump_true' is next insn. */
506 if (fp->jt == 0 && BPF_OP(fp->code) == BPF_JEQ) {
507 insn->code = BPF_JMP | BPF_JNE | bpf_src;
508 target = i + fp->jf + 1;
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200509 BPF_EMIT_JMP;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100510 break;
511 }
512
513 /* Other jumps are mapped into two insns: Jxx and JA. */
514 target = i + fp->jt + 1;
515 insn->code = BPF_JMP | BPF_OP(fp->code) | bpf_src;
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200516 BPF_EMIT_JMP;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100517 insn++;
518
519 insn->code = BPF_JMP | BPF_JA;
520 target = i + fp->jf + 1;
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200521 BPF_EMIT_JMP;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100522 break;
523
524 /* ldxb 4 * ([14] & 0xf) is remaped into 6 insns. */
525 case BPF_LDX | BPF_MSH | BPF_B:
Alexei Starovoitov9739eef2014-05-08 14:10:51 -0700526 /* tmp = A */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200527 *insn++ = BPF_MOV64_REG(BPF_REG_TMP, BPF_REG_A);
David S. Miller1268e252014-05-13 13:13:33 -0400528 /* A = BPF_R0 = *(u8 *) (skb->data + K) */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200529 *insn++ = BPF_LD_ABS(BPF_B, fp->k);
Alexei Starovoitov9739eef2014-05-08 14:10:51 -0700530 /* A &= 0xf */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200531 *insn++ = BPF_ALU32_IMM(BPF_AND, BPF_REG_A, 0xf);
Alexei Starovoitov9739eef2014-05-08 14:10:51 -0700532 /* A <<= 2 */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200533 *insn++ = BPF_ALU32_IMM(BPF_LSH, BPF_REG_A, 2);
Alexei Starovoitov9739eef2014-05-08 14:10:51 -0700534 /* X = A */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200535 *insn++ = BPF_MOV64_REG(BPF_REG_X, BPF_REG_A);
Alexei Starovoitov9739eef2014-05-08 14:10:51 -0700536 /* A = tmp */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200537 *insn = BPF_MOV64_REG(BPF_REG_A, BPF_REG_TMP);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100538 break;
539
Daniel Borkmann6205b9c2016-02-19 23:05:27 +0100540 /* RET_K is remaped into 2 insns. RET_A case doesn't need an
541 * extra mov as BPF_REG_0 is already mapped into BPF_REG_A.
542 */
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100543 case BPF_RET | BPF_A:
544 case BPF_RET | BPF_K:
Daniel Borkmann6205b9c2016-02-19 23:05:27 +0100545 if (BPF_RVAL(fp->code) == BPF_K)
546 *insn++ = BPF_MOV32_RAW(BPF_K, BPF_REG_0,
547 0, fp->k);
Alexei Starovoitov9739eef2014-05-08 14:10:51 -0700548 *insn = BPF_EXIT_INSN();
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100549 break;
550
551 /* Store to stack. */
552 case BPF_ST:
553 case BPF_STX:
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200554 *insn = BPF_STX_MEM(BPF_W, BPF_REG_FP, BPF_CLASS(fp->code) ==
555 BPF_ST ? BPF_REG_A : BPF_REG_X,
556 -(BPF_MEMWORDS - fp->k) * 4);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100557 break;
558
559 /* Load from stack. */
560 case BPF_LD | BPF_MEM:
561 case BPF_LDX | BPF_MEM:
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200562 *insn = BPF_LDX_MEM(BPF_W, BPF_CLASS(fp->code) == BPF_LD ?
563 BPF_REG_A : BPF_REG_X, BPF_REG_FP,
564 -(BPF_MEMWORDS - fp->k) * 4);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100565 break;
566
567 /* A = K or X = K */
568 case BPF_LD | BPF_IMM:
569 case BPF_LDX | BPF_IMM:
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200570 *insn = BPF_MOV32_IMM(BPF_CLASS(fp->code) == BPF_LD ?
571 BPF_REG_A : BPF_REG_X, fp->k);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100572 break;
573
574 /* X = A */
575 case BPF_MISC | BPF_TAX:
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200576 *insn = BPF_MOV64_REG(BPF_REG_X, BPF_REG_A);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100577 break;
578
579 /* A = X */
580 case BPF_MISC | BPF_TXA:
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200581 *insn = BPF_MOV64_REG(BPF_REG_A, BPF_REG_X);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100582 break;
583
584 /* A = skb->len or X = skb->len */
585 case BPF_LD | BPF_W | BPF_LEN:
586 case BPF_LDX | BPF_W | BPF_LEN:
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200587 *insn = BPF_LDX_MEM(BPF_W, BPF_CLASS(fp->code) == BPF_LD ?
588 BPF_REG_A : BPF_REG_X, BPF_REG_CTX,
589 offsetof(struct sk_buff, len));
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100590 break;
591
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200592 /* Access seccomp_data fields. */
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100593 case BPF_LDX | BPF_ABS | BPF_W:
Alexei Starovoitov9739eef2014-05-08 14:10:51 -0700594 /* A = *(u32 *) (ctx + K) */
595 *insn = BPF_LDX_MEM(BPF_W, BPF_REG_A, BPF_REG_CTX, fp->k);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100596 break;
597
Stephen Hemmingerca9f1fd2015-02-14 13:47:54 -0500598 /* Unknown instruction. */
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100599 default:
600 goto err;
601 }
602
603 insn++;
604 if (new_prog)
605 memcpy(new_insn, tmp_insns,
606 sizeof(*insn) * (insn - tmp_insns));
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100607 new_insn += insn - tmp_insns;
608 }
609
610 if (!new_prog) {
611 /* Only calculating new length. */
612 *new_len = new_insn - new_prog;
613 return 0;
614 }
615
616 pass++;
617 if (new_flen != new_insn - new_prog) {
618 new_flen = new_insn - new_prog;
619 if (pass > 2)
620 goto err;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100621 goto do_pass;
622 }
623
624 kfree(addrs);
625 BUG_ON(*new_len != new_flen);
626 return 0;
627err:
628 kfree(addrs);
629 return -EINVAL;
630}
631
632/* Security:
633 *
Eric Dumazet2d5311e2010-12-01 20:46:24 +0000634 * As we dont want to clear mem[] array for each packet going through
Li RongQing8ea6e342014-10-10 13:56:51 +0800635 * __bpf_prog_run(), we check that filter loaded by user never try to read
Eric Dumazet2d5311e2010-12-01 20:46:24 +0000636 * a cell if not previously written, and we check all branches to be sure
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300637 * a malicious user doesn't try to abuse us.
Eric Dumazet2d5311e2010-12-01 20:46:24 +0000638 */
Eric Dumazetec31a052014-07-12 15:49:16 +0200639static int check_load_and_stores(const struct sock_filter *filter, int flen)
Eric Dumazet2d5311e2010-12-01 20:46:24 +0000640{
Daniel Borkmann34805932014-05-29 10:22:50 +0200641 u16 *masks, memvalid = 0; /* One bit per cell, 16 cells */
Eric Dumazet2d5311e2010-12-01 20:46:24 +0000642 int pc, ret = 0;
643
644 BUILD_BUG_ON(BPF_MEMWORDS > 16);
Daniel Borkmann34805932014-05-29 10:22:50 +0200645
Tobias Klauser99e72a02014-06-24 15:33:22 +0200646 masks = kmalloc_array(flen, sizeof(*masks), GFP_KERNEL);
Eric Dumazet2d5311e2010-12-01 20:46:24 +0000647 if (!masks)
648 return -ENOMEM;
Daniel Borkmann34805932014-05-29 10:22:50 +0200649
Eric Dumazet2d5311e2010-12-01 20:46:24 +0000650 memset(masks, 0xff, flen * sizeof(*masks));
651
652 for (pc = 0; pc < flen; pc++) {
653 memvalid &= masks[pc];
654
655 switch (filter[pc].code) {
Daniel Borkmann34805932014-05-29 10:22:50 +0200656 case BPF_ST:
657 case BPF_STX:
Eric Dumazet2d5311e2010-12-01 20:46:24 +0000658 memvalid |= (1 << filter[pc].k);
659 break;
Daniel Borkmann34805932014-05-29 10:22:50 +0200660 case BPF_LD | BPF_MEM:
661 case BPF_LDX | BPF_MEM:
Eric Dumazet2d5311e2010-12-01 20:46:24 +0000662 if (!(memvalid & (1 << filter[pc].k))) {
663 ret = -EINVAL;
664 goto error;
665 }
666 break;
Daniel Borkmann34805932014-05-29 10:22:50 +0200667 case BPF_JMP | BPF_JA:
668 /* A jump must set masks on target */
Eric Dumazet2d5311e2010-12-01 20:46:24 +0000669 masks[pc + 1 + filter[pc].k] &= memvalid;
670 memvalid = ~0;
671 break;
Daniel Borkmann34805932014-05-29 10:22:50 +0200672 case BPF_JMP | BPF_JEQ | BPF_K:
673 case BPF_JMP | BPF_JEQ | BPF_X:
674 case BPF_JMP | BPF_JGE | BPF_K:
675 case BPF_JMP | BPF_JGE | BPF_X:
676 case BPF_JMP | BPF_JGT | BPF_K:
677 case BPF_JMP | BPF_JGT | BPF_X:
678 case BPF_JMP | BPF_JSET | BPF_K:
679 case BPF_JMP | BPF_JSET | BPF_X:
680 /* A jump must set masks on targets */
Eric Dumazet2d5311e2010-12-01 20:46:24 +0000681 masks[pc + 1 + filter[pc].jt] &= memvalid;
682 masks[pc + 1 + filter[pc].jf] &= memvalid;
683 memvalid = ~0;
684 break;
685 }
686 }
687error:
688 kfree(masks);
689 return ret;
690}
691
Daniel Borkmann34805932014-05-29 10:22:50 +0200692static bool chk_code_allowed(u16 code_to_probe)
693{
694 static const bool codes[] = {
695 /* 32 bit ALU operations */
696 [BPF_ALU | BPF_ADD | BPF_K] = true,
697 [BPF_ALU | BPF_ADD | BPF_X] = true,
698 [BPF_ALU | BPF_SUB | BPF_K] = true,
699 [BPF_ALU | BPF_SUB | BPF_X] = true,
700 [BPF_ALU | BPF_MUL | BPF_K] = true,
701 [BPF_ALU | BPF_MUL | BPF_X] = true,
702 [BPF_ALU | BPF_DIV | BPF_K] = true,
703 [BPF_ALU | BPF_DIV | BPF_X] = true,
704 [BPF_ALU | BPF_MOD | BPF_K] = true,
705 [BPF_ALU | BPF_MOD | BPF_X] = true,
706 [BPF_ALU | BPF_AND | BPF_K] = true,
707 [BPF_ALU | BPF_AND | BPF_X] = true,
708 [BPF_ALU | BPF_OR | BPF_K] = true,
709 [BPF_ALU | BPF_OR | BPF_X] = true,
710 [BPF_ALU | BPF_XOR | BPF_K] = true,
711 [BPF_ALU | BPF_XOR | BPF_X] = true,
712 [BPF_ALU | BPF_LSH | BPF_K] = true,
713 [BPF_ALU | BPF_LSH | BPF_X] = true,
714 [BPF_ALU | BPF_RSH | BPF_K] = true,
715 [BPF_ALU | BPF_RSH | BPF_X] = true,
716 [BPF_ALU | BPF_NEG] = true,
717 /* Load instructions */
718 [BPF_LD | BPF_W | BPF_ABS] = true,
719 [BPF_LD | BPF_H | BPF_ABS] = true,
720 [BPF_LD | BPF_B | BPF_ABS] = true,
721 [BPF_LD | BPF_W | BPF_LEN] = true,
722 [BPF_LD | BPF_W | BPF_IND] = true,
723 [BPF_LD | BPF_H | BPF_IND] = true,
724 [BPF_LD | BPF_B | BPF_IND] = true,
725 [BPF_LD | BPF_IMM] = true,
726 [BPF_LD | BPF_MEM] = true,
727 [BPF_LDX | BPF_W | BPF_LEN] = true,
728 [BPF_LDX | BPF_B | BPF_MSH] = true,
729 [BPF_LDX | BPF_IMM] = true,
730 [BPF_LDX | BPF_MEM] = true,
731 /* Store instructions */
732 [BPF_ST] = true,
733 [BPF_STX] = true,
734 /* Misc instructions */
735 [BPF_MISC | BPF_TAX] = true,
736 [BPF_MISC | BPF_TXA] = true,
737 /* Return instructions */
738 [BPF_RET | BPF_K] = true,
739 [BPF_RET | BPF_A] = true,
740 /* Jump instructions */
741 [BPF_JMP | BPF_JA] = true,
742 [BPF_JMP | BPF_JEQ | BPF_K] = true,
743 [BPF_JMP | BPF_JEQ | BPF_X] = true,
744 [BPF_JMP | BPF_JGE | BPF_K] = true,
745 [BPF_JMP | BPF_JGE | BPF_X] = true,
746 [BPF_JMP | BPF_JGT | BPF_K] = true,
747 [BPF_JMP | BPF_JGT | BPF_X] = true,
748 [BPF_JMP | BPF_JSET | BPF_K] = true,
749 [BPF_JMP | BPF_JSET | BPF_X] = true,
750 };
751
752 if (code_to_probe >= ARRAY_SIZE(codes))
753 return false;
754
755 return codes[code_to_probe];
756}
757
Daniel Borkmannf7bd9e32016-06-10 21:19:07 +0200758static bool bpf_check_basics_ok(const struct sock_filter *filter,
759 unsigned int flen)
760{
761 if (filter == NULL)
762 return false;
763 if (flen == 0 || flen > BPF_MAXINSNS)
764 return false;
765
766 return true;
767}
768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769/**
Alexei Starovoitov4df95ff2014-07-30 20:34:14 -0700770 * bpf_check_classic - verify socket filter code
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 * @filter: filter to verify
772 * @flen: length of filter
773 *
774 * Check the user's filter code. If we let some ugly
775 * filter code slip through kaboom! The filter must contain
Kris Katterjohn93699862006-01-04 13:58:36 -0800776 * no references or jumps that are out of range, no illegal
777 * instructions, and must end with a RET instruction.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 *
Kris Katterjohn7b11f692006-01-13 14:33:06 -0800779 * All jumps are forward as they are not signed.
780 *
781 * Returns 0 if the rule set is legal or -EINVAL if not.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 */
Nicolas Schichand9e12f42015-05-06 16:12:28 +0200783static int bpf_check_classic(const struct sock_filter *filter,
784 unsigned int flen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
Daniel Borkmannaa1113d2012-12-28 10:50:17 +0000786 bool anc_found;
Daniel Borkmann34805932014-05-29 10:22:50 +0200787 int pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Daniel Borkmann34805932014-05-29 10:22:50 +0200789 /* Check the filter code now */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 for (pc = 0; pc < flen; pc++) {
Eric Dumazetec31a052014-07-12 15:49:16 +0200791 const struct sock_filter *ftest = &filter[pc];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Daniel Borkmann34805932014-05-29 10:22:50 +0200793 /* May we actually operate on this code? */
794 if (!chk_code_allowed(ftest->code))
Tetsuo Handacba328f2010-11-16 15:19:51 +0000795 return -EINVAL;
Daniel Borkmann34805932014-05-29 10:22:50 +0200796
Kris Katterjohn93699862006-01-04 13:58:36 -0800797 /* Some instructions need special checks */
Daniel Borkmann34805932014-05-29 10:22:50 +0200798 switch (ftest->code) {
799 case BPF_ALU | BPF_DIV | BPF_K:
800 case BPF_ALU | BPF_MOD | BPF_K:
801 /* Check for division by zero */
Eric Dumazetb6069a92012-09-07 22:03:35 +0000802 if (ftest->k == 0)
803 return -EINVAL;
804 break;
Rabin Vincent229394e2016-01-12 20:17:08 +0100805 case BPF_ALU | BPF_LSH | BPF_K:
806 case BPF_ALU | BPF_RSH | BPF_K:
807 if (ftest->k >= 32)
808 return -EINVAL;
809 break;
Daniel Borkmann34805932014-05-29 10:22:50 +0200810 case BPF_LD | BPF_MEM:
811 case BPF_LDX | BPF_MEM:
812 case BPF_ST:
813 case BPF_STX:
814 /* Check for invalid memory addresses */
Kris Katterjohn93699862006-01-04 13:58:36 -0800815 if (ftest->k >= BPF_MEMWORDS)
816 return -EINVAL;
Hagen Paul Pfeifer01f2f3f2010-06-19 17:05:36 +0000817 break;
Daniel Borkmann34805932014-05-29 10:22:50 +0200818 case BPF_JMP | BPF_JA:
819 /* Note, the large ftest->k might cause loops.
Kris Katterjohn93699862006-01-04 13:58:36 -0800820 * Compare this with conditional jumps below,
821 * where offsets are limited. --ANK (981016)
822 */
Daniel Borkmann34805932014-05-29 10:22:50 +0200823 if (ftest->k >= (unsigned int)(flen - pc - 1))
Kris Katterjohn93699862006-01-04 13:58:36 -0800824 return -EINVAL;
825 break;
Daniel Borkmann34805932014-05-29 10:22:50 +0200826 case BPF_JMP | BPF_JEQ | BPF_K:
827 case BPF_JMP | BPF_JEQ | BPF_X:
828 case BPF_JMP | BPF_JGE | BPF_K:
829 case BPF_JMP | BPF_JGE | BPF_X:
830 case BPF_JMP | BPF_JGT | BPF_K:
831 case BPF_JMP | BPF_JGT | BPF_X:
832 case BPF_JMP | BPF_JSET | BPF_K:
833 case BPF_JMP | BPF_JSET | BPF_X:
834 /* Both conditionals must be safe */
Hagen Paul Pfeifer01f2f3f2010-06-19 17:05:36 +0000835 if (pc + ftest->jt + 1 >= flen ||
836 pc + ftest->jf + 1 >= flen)
837 return -EINVAL;
Tetsuo Handacba328f2010-11-16 15:19:51 +0000838 break;
Daniel Borkmann34805932014-05-29 10:22:50 +0200839 case BPF_LD | BPF_W | BPF_ABS:
840 case BPF_LD | BPF_H | BPF_ABS:
841 case BPF_LD | BPF_B | BPF_ABS:
Daniel Borkmannaa1113d2012-12-28 10:50:17 +0000842 anc_found = false;
Daniel Borkmann34805932014-05-29 10:22:50 +0200843 if (bpf_anc_helper(ftest) & BPF_ANC)
844 anc_found = true;
845 /* Ancillary operation unknown or unsupported */
Daniel Borkmannaa1113d2012-12-28 10:50:17 +0000846 if (anc_found == false && ftest->k >= SKF_AD_OFF)
847 return -EINVAL;
Hagen Paul Pfeifer01f2f3f2010-06-19 17:05:36 +0000848 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 }
850
Daniel Borkmann34805932014-05-29 10:22:50 +0200851 /* Last instruction must be a RET code */
Hagen Paul Pfeifer01f2f3f2010-06-19 17:05:36 +0000852 switch (filter[flen - 1].code) {
Daniel Borkmann34805932014-05-29 10:22:50 +0200853 case BPF_RET | BPF_K:
854 case BPF_RET | BPF_A:
Eric Dumazet2d5311e2010-12-01 20:46:24 +0000855 return check_load_and_stores(filter, flen);
Tetsuo Handacba328f2010-11-16 15:19:51 +0000856 }
Daniel Borkmann34805932014-05-29 10:22:50 +0200857
Tetsuo Handacba328f2010-11-16 15:19:51 +0000858 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859}
860
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700861static int bpf_prog_store_orig_filter(struct bpf_prog *fp,
862 const struct sock_fprog *fprog)
Daniel Borkmanna3ea2692014-03-28 18:58:19 +0100863{
Alexei Starovoitov009937e2014-07-30 20:34:13 -0700864 unsigned int fsize = bpf_classic_proglen(fprog);
Daniel Borkmanna3ea2692014-03-28 18:58:19 +0100865 struct sock_fprog_kern *fkprog;
866
867 fp->orig_prog = kmalloc(sizeof(*fkprog), GFP_KERNEL);
868 if (!fp->orig_prog)
869 return -ENOMEM;
870
871 fkprog = fp->orig_prog;
872 fkprog->len = fprog->len;
Daniel Borkmann658da932015-05-06 16:12:29 +0200873
874 fkprog->filter = kmemdup(fp->insns, fsize,
875 GFP_KERNEL | __GFP_NOWARN);
Daniel Borkmanna3ea2692014-03-28 18:58:19 +0100876 if (!fkprog->filter) {
877 kfree(fp->orig_prog);
878 return -ENOMEM;
879 }
880
881 return 0;
882}
883
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700884static void bpf_release_orig_filter(struct bpf_prog *fp)
Daniel Borkmanna3ea2692014-03-28 18:58:19 +0100885{
886 struct sock_fprog_kern *fprog = fp->orig_prog;
887
888 if (fprog) {
889 kfree(fprog->filter);
890 kfree(fprog);
891 }
892}
893
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700894static void __bpf_prog_release(struct bpf_prog *prog)
895{
Daniel Borkmann24701ec2015-03-01 12:31:47 +0100896 if (prog->type == BPF_PROG_TYPE_SOCKET_FILTER) {
Alexei Starovoitov89aa0752014-12-01 15:06:35 -0800897 bpf_prog_put(prog);
898 } else {
899 bpf_release_orig_filter(prog);
900 bpf_prog_free(prog);
901 }
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700902}
903
Pablo Neira34c5bd62014-07-29 17:36:28 +0200904static void __sk_filter_release(struct sk_filter *fp)
905{
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700906 __bpf_prog_release(fp->prog);
907 kfree(fp);
Pablo Neira34c5bd62014-07-29 17:36:28 +0200908}
909
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910/**
Eric Dumazet46bcf142010-12-06 09:29:43 -0800911 * sk_filter_release_rcu - Release a socket filter by rcu_head
Pavel Emelyanov47e958e2007-10-17 21:22:42 -0700912 * @rcu: rcu_head that contains the sk_filter to free
913 */
Daniel Borkmannfbc907f2014-03-28 18:58:20 +0100914static void sk_filter_release_rcu(struct rcu_head *rcu)
Pavel Emelyanov47e958e2007-10-17 21:22:42 -0700915{
916 struct sk_filter *fp = container_of(rcu, struct sk_filter, rcu);
917
Pablo Neira34c5bd62014-07-29 17:36:28 +0200918 __sk_filter_release(fp);
Pavel Emelyanov47e958e2007-10-17 21:22:42 -0700919}
Daniel Borkmannfbc907f2014-03-28 18:58:20 +0100920
921/**
922 * sk_filter_release - release a socket filter
923 * @fp: filter to remove
924 *
925 * Remove a filter from a socket and release its resources.
926 */
927static void sk_filter_release(struct sk_filter *fp)
928{
929 if (atomic_dec_and_test(&fp->refcnt))
930 call_rcu(&fp->rcu, sk_filter_release_rcu);
931}
932
933void sk_filter_uncharge(struct sock *sk, struct sk_filter *fp)
934{
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700935 u32 filter_size = bpf_prog_size(fp->prog->len);
Alexei Starovoitov278571b2014-07-30 20:34:12 -0700936
937 atomic_sub(filter_size, &sk->sk_omem_alloc);
Daniel Borkmannfbc907f2014-03-28 18:58:20 +0100938 sk_filter_release(fp);
939}
940
Alexei Starovoitov278571b2014-07-30 20:34:12 -0700941/* try to charge the socket memory if there is space available
942 * return true on success
943 */
Greg Kroah-Hartman00449622017-10-12 21:21:39 +0200944bool sk_filter_charge(struct sock *sk, struct sk_filter *fp)
Daniel Borkmannfbc907f2014-03-28 18:58:20 +0100945{
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700946 u32 filter_size = bpf_prog_size(fp->prog->len);
Pavel Emelyanov47e958e2007-10-17 21:22:42 -0700947
Alexei Starovoitov278571b2014-07-30 20:34:12 -0700948 /* same check as in sock_kmalloc() */
949 if (filter_size <= sysctl_optmem_max &&
950 atomic_read(&sk->sk_omem_alloc) + filter_size < sysctl_optmem_max) {
Greg Kroah-Hartman00449622017-10-12 21:21:39 +0200951 atomic_inc(&fp->refcnt);
Alexei Starovoitov278571b2014-07-30 20:34:12 -0700952 atomic_add(filter_size, &sk->sk_omem_alloc);
953 return true;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100954 }
Alexei Starovoitov278571b2014-07-30 20:34:12 -0700955 return false;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100956}
957
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700958static struct bpf_prog *bpf_migrate_filter(struct bpf_prog *fp)
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100959{
960 struct sock_filter *old_prog;
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700961 struct bpf_prog *old_fp;
Daniel Borkmann34805932014-05-29 10:22:50 +0200962 int err, new_len, old_len = fp->len;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100963
964 /* We are free to overwrite insns et al right here as it
965 * won't be used at this point in time anymore internally
966 * after the migration to the internal BPF instruction
967 * representation.
968 */
969 BUILD_BUG_ON(sizeof(struct sock_filter) !=
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700970 sizeof(struct bpf_insn));
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100971
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100972 /* Conversion cannot happen on overlapping memory areas,
973 * so we need to keep the user BPF around until the 2nd
974 * pass. At this time, the user BPF is stored in fp->insns.
975 */
976 old_prog = kmemdup(fp->insns, old_len * sizeof(struct sock_filter),
Daniel Borkmann658da932015-05-06 16:12:29 +0200977 GFP_KERNEL | __GFP_NOWARN);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100978 if (!old_prog) {
979 err = -ENOMEM;
980 goto out_err;
981 }
982
983 /* 1st pass: calculate the new program length. */
Alexei Starovoitov8fb575c2014-07-30 20:34:15 -0700984 err = bpf_convert_filter(old_prog, old_len, NULL, &new_len);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100985 if (err)
986 goto out_err_free;
987
988 /* Expand fp for appending the new filter representation. */
989 old_fp = fp;
Daniel Borkmann60a3b222014-09-02 22:53:44 +0200990 fp = bpf_prog_realloc(old_fp, bpf_prog_size(new_len), 0);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100991 if (!fp) {
992 /* The old_fp is still around in case we couldn't
993 * allocate new memory, so uncharge on that one.
994 */
995 fp = old_fp;
996 err = -ENOMEM;
997 goto out_err_free;
998 }
999
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +01001000 fp->len = new_len;
1001
Alexei Starovoitov2695fb52014-07-24 16:38:21 -07001002 /* 2nd pass: remap sock_filter insns into bpf_insn insns. */
Alexei Starovoitov8fb575c2014-07-30 20:34:15 -07001003 err = bpf_convert_filter(old_prog, old_len, fp->insnsi, &new_len);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +01001004 if (err)
Alexei Starovoitov8fb575c2014-07-30 20:34:15 -07001005 /* 2nd bpf_convert_filter() can fail only if it fails
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +01001006 * to allocate memory, remapping must succeed. Note,
1007 * that at this time old_fp has already been released
Alexei Starovoitov278571b2014-07-30 20:34:12 -07001008 * by krealloc().
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +01001009 */
1010 goto out_err_free;
1011
Daniel Borkmannd1c55ab2016-05-13 19:08:31 +02001012 fp = bpf_prog_select_runtime(fp, &err);
Alexei Starovoitova3d6dd62018-01-29 02:48:56 +01001013 if (err)
1014 goto out_err_free;
Alexei Starovoitov5fe821a2014-05-19 14:56:14 -07001015
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +01001016 kfree(old_prog);
1017 return fp;
1018
1019out_err_free:
1020 kfree(old_prog);
1021out_err:
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001022 __bpf_prog_release(fp);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +01001023 return ERR_PTR(err);
1024}
1025
Daniel Borkmannac67eb22015-05-06 16:12:30 +02001026static struct bpf_prog *bpf_prepare_filter(struct bpf_prog *fp,
1027 bpf_aux_classic_check_t trans)
Jiri Pirko302d6632012-03-31 11:01:19 +00001028{
1029 int err;
1030
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +01001031 fp->bpf_func = NULL;
Daniel Borkmanna91263d2015-09-30 01:41:50 +02001032 fp->jited = 0;
Jiri Pirko302d6632012-03-31 11:01:19 +00001033
Alexei Starovoitov4df95ff2014-07-30 20:34:14 -07001034 err = bpf_check_classic(fp->insns, fp->len);
Leon Yu418c96a2014-06-01 05:37:25 +00001035 if (err) {
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001036 __bpf_prog_release(fp);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +01001037 return ERR_PTR(err);
Leon Yu418c96a2014-06-01 05:37:25 +00001038 }
Jiri Pirko302d6632012-03-31 11:01:19 +00001039
Nicolas Schichan4ae92bc2015-05-06 16:12:27 +02001040 /* There might be additional checks and transformations
1041 * needed on classic filters, f.e. in case of seccomp.
1042 */
1043 if (trans) {
1044 err = trans(fp->insns, fp->len);
1045 if (err) {
1046 __bpf_prog_release(fp);
1047 return ERR_PTR(err);
1048 }
1049 }
1050
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +01001051 /* Probe if we can JIT compile the filter and if so, do
1052 * the compilation of the filter.
1053 */
Jiri Pirko302d6632012-03-31 11:01:19 +00001054 bpf_jit_compile(fp);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +01001055
1056 /* JIT compiler couldn't process this filter, so do the
1057 * internal BPF translation for the optimized interpreter.
1058 */
Alexei Starovoitov5fe821a2014-05-19 14:56:14 -07001059 if (!fp->jited)
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001060 fp = bpf_migrate_filter(fp);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +01001061
1062 return fp;
Jiri Pirko302d6632012-03-31 11:01:19 +00001063}
1064
1065/**
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001066 * bpf_prog_create - create an unattached filter
Randy Dunlapc6c4b972012-06-08 14:01:44 +00001067 * @pfp: the unattached filter that is created
Tobias Klauser677a9fd2014-06-24 15:33:21 +02001068 * @fprog: the filter program
Jiri Pirko302d6632012-03-31 11:01:19 +00001069 *
Randy Dunlapc6c4b972012-06-08 14:01:44 +00001070 * Create a filter independent of any socket. We first run some
Jiri Pirko302d6632012-03-31 11:01:19 +00001071 * sanity checks on it to make sure it does not explode on us later.
1072 * If an error occurs or there is insufficient memory for the filter
1073 * a negative errno code is returned. On success the return is zero.
1074 */
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001075int bpf_prog_create(struct bpf_prog **pfp, struct sock_fprog_kern *fprog)
Jiri Pirko302d6632012-03-31 11:01:19 +00001076{
Alexei Starovoitov009937e2014-07-30 20:34:13 -07001077 unsigned int fsize = bpf_classic_proglen(fprog);
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001078 struct bpf_prog *fp;
Jiri Pirko302d6632012-03-31 11:01:19 +00001079
1080 /* Make sure new filter is there and in the right amounts. */
Daniel Borkmannf7bd9e32016-06-10 21:19:07 +02001081 if (!bpf_check_basics_ok(fprog->filter, fprog->len))
Jiri Pirko302d6632012-03-31 11:01:19 +00001082 return -EINVAL;
1083
Daniel Borkmann60a3b222014-09-02 22:53:44 +02001084 fp = bpf_prog_alloc(bpf_prog_size(fprog->len), 0);
Jiri Pirko302d6632012-03-31 11:01:19 +00001085 if (!fp)
1086 return -ENOMEM;
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01001087
Jiri Pirko302d6632012-03-31 11:01:19 +00001088 memcpy(fp->insns, fprog->filter, fsize);
1089
Jiri Pirko302d6632012-03-31 11:01:19 +00001090 fp->len = fprog->len;
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01001091 /* Since unattached filters are not copied back to user
1092 * space through sk_get_filter(), we do not need to hold
1093 * a copy here, and can spare us the work.
1094 */
1095 fp->orig_prog = NULL;
Jiri Pirko302d6632012-03-31 11:01:19 +00001096
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001097 /* bpf_prepare_filter() already takes care of freeing
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +01001098 * memory in case something goes wrong.
1099 */
Nicolas Schichan4ae92bc2015-05-06 16:12:27 +02001100 fp = bpf_prepare_filter(fp, NULL);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +01001101 if (IS_ERR(fp))
1102 return PTR_ERR(fp);
Jiri Pirko302d6632012-03-31 11:01:19 +00001103
1104 *pfp = fp;
1105 return 0;
Jiri Pirko302d6632012-03-31 11:01:19 +00001106}
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001107EXPORT_SYMBOL_GPL(bpf_prog_create);
Jiri Pirko302d6632012-03-31 11:01:19 +00001108
Daniel Borkmannac67eb22015-05-06 16:12:30 +02001109/**
1110 * bpf_prog_create_from_user - create an unattached filter from user buffer
1111 * @pfp: the unattached filter that is created
1112 * @fprog: the filter program
1113 * @trans: post-classic verifier transformation handler
Daniel Borkmannbab18992015-10-02 15:17:33 +02001114 * @save_orig: save classic BPF program
Daniel Borkmannac67eb22015-05-06 16:12:30 +02001115 *
1116 * This function effectively does the same as bpf_prog_create(), only
1117 * that it builds up its insns buffer from user space provided buffer.
1118 * It also allows for passing a bpf_aux_classic_check_t handler.
1119 */
1120int bpf_prog_create_from_user(struct bpf_prog **pfp, struct sock_fprog *fprog,
Daniel Borkmannbab18992015-10-02 15:17:33 +02001121 bpf_aux_classic_check_t trans, bool save_orig)
Daniel Borkmannac67eb22015-05-06 16:12:30 +02001122{
1123 unsigned int fsize = bpf_classic_proglen(fprog);
1124 struct bpf_prog *fp;
Daniel Borkmannbab18992015-10-02 15:17:33 +02001125 int err;
Daniel Borkmannac67eb22015-05-06 16:12:30 +02001126
1127 /* Make sure new filter is there and in the right amounts. */
Daniel Borkmannf7bd9e32016-06-10 21:19:07 +02001128 if (!bpf_check_basics_ok(fprog->filter, fprog->len))
Daniel Borkmannac67eb22015-05-06 16:12:30 +02001129 return -EINVAL;
1130
1131 fp = bpf_prog_alloc(bpf_prog_size(fprog->len), 0);
1132 if (!fp)
1133 return -ENOMEM;
1134
1135 if (copy_from_user(fp->insns, fprog->filter, fsize)) {
1136 __bpf_prog_free(fp);
1137 return -EFAULT;
1138 }
1139
1140 fp->len = fprog->len;
Daniel Borkmannac67eb22015-05-06 16:12:30 +02001141 fp->orig_prog = NULL;
1142
Daniel Borkmannbab18992015-10-02 15:17:33 +02001143 if (save_orig) {
1144 err = bpf_prog_store_orig_filter(fp, fprog);
1145 if (err) {
1146 __bpf_prog_free(fp);
1147 return -ENOMEM;
1148 }
1149 }
1150
Daniel Borkmannac67eb22015-05-06 16:12:30 +02001151 /* bpf_prepare_filter() already takes care of freeing
1152 * memory in case something goes wrong.
1153 */
1154 fp = bpf_prepare_filter(fp, trans);
1155 if (IS_ERR(fp))
1156 return PTR_ERR(fp);
1157
1158 *pfp = fp;
1159 return 0;
1160}
David S. Miller2ea273d2015-08-17 14:37:06 -07001161EXPORT_SYMBOL_GPL(bpf_prog_create_from_user);
Daniel Borkmannac67eb22015-05-06 16:12:30 +02001162
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001163void bpf_prog_destroy(struct bpf_prog *fp)
Jiri Pirko302d6632012-03-31 11:01:19 +00001164{
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001165 __bpf_prog_release(fp);
Jiri Pirko302d6632012-03-31 11:01:19 +00001166}
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001167EXPORT_SYMBOL_GPL(bpf_prog_destroy);
Jiri Pirko302d6632012-03-31 11:01:19 +00001168
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +02001169static int __sk_attach_prog(struct bpf_prog *prog, struct sock *sk)
Daniel Borkmann49b31e52015-03-02 12:25:51 +01001170{
1171 struct sk_filter *fp, *old_fp;
1172
1173 fp = kmalloc(sizeof(*fp), GFP_KERNEL);
1174 if (!fp)
1175 return -ENOMEM;
1176
1177 fp->prog = prog;
1178 atomic_set(&fp->refcnt, 0);
1179
1180 if (!sk_filter_charge(sk, fp)) {
1181 kfree(fp);
1182 return -ENOMEM;
1183 }
1184
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +02001185 old_fp = rcu_dereference_protected(sk->sk_filter,
1186 lockdep_sock_is_held(sk));
Daniel Borkmann49b31e52015-03-02 12:25:51 +01001187 rcu_assign_pointer(sk->sk_filter, fp);
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +02001188
Daniel Borkmann49b31e52015-03-02 12:25:51 +01001189 if (old_fp)
1190 sk_filter_uncharge(sk, old_fp);
1191
1192 return 0;
1193}
1194
Craig Gallek538950a2016-01-04 17:41:47 -05001195static int __reuseport_attach_prog(struct bpf_prog *prog, struct sock *sk)
1196{
1197 struct bpf_prog *old_prog;
1198 int err;
1199
1200 if (bpf_prog_size(prog->len) > sysctl_optmem_max)
1201 return -ENOMEM;
1202
Craig Gallekfa463492016-02-10 11:50:39 -05001203 if (sk_unhashed(sk) && sk->sk_reuseport) {
Craig Gallek538950a2016-01-04 17:41:47 -05001204 err = reuseport_alloc(sk);
1205 if (err)
1206 return err;
1207 } else if (!rcu_access_pointer(sk->sk_reuseport_cb)) {
1208 /* The socket wasn't bound with SO_REUSEPORT */
1209 return -EINVAL;
1210 }
1211
1212 old_prog = reuseport_attach_prog(sk, prog);
1213 if (old_prog)
1214 bpf_prog_destroy(old_prog);
1215
1216 return 0;
1217}
1218
1219static
1220struct bpf_prog *__get_filter(struct sock_fprog *fprog, struct sock *sk)
1221{
1222 unsigned int fsize = bpf_classic_proglen(fprog);
Craig Gallek538950a2016-01-04 17:41:47 -05001223 struct bpf_prog *prog;
1224 int err;
1225
1226 if (sock_flag(sk, SOCK_FILTER_LOCKED))
1227 return ERR_PTR(-EPERM);
1228
1229 /* Make sure new filter is there and in the right amounts. */
Daniel Borkmannf7bd9e32016-06-10 21:19:07 +02001230 if (!bpf_check_basics_ok(fprog->filter, fprog->len))
Craig Gallek538950a2016-01-04 17:41:47 -05001231 return ERR_PTR(-EINVAL);
1232
Daniel Borkmannf7bd9e32016-06-10 21:19:07 +02001233 prog = bpf_prog_alloc(bpf_prog_size(fprog->len), 0);
Craig Gallek538950a2016-01-04 17:41:47 -05001234 if (!prog)
1235 return ERR_PTR(-ENOMEM);
1236
1237 if (copy_from_user(prog->insns, fprog->filter, fsize)) {
1238 __bpf_prog_free(prog);
1239 return ERR_PTR(-EFAULT);
1240 }
1241
1242 prog->len = fprog->len;
1243
1244 err = bpf_prog_store_orig_filter(prog, fprog);
1245 if (err) {
1246 __bpf_prog_free(prog);
1247 return ERR_PTR(-ENOMEM);
1248 }
1249
1250 /* bpf_prepare_filter() already takes care of freeing
1251 * memory in case something goes wrong.
1252 */
1253 return bpf_prepare_filter(prog, NULL);
1254}
1255
Pavel Emelyanov47e958e2007-10-17 21:22:42 -07001256/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 * sk_attach_filter - attach a socket filter
1258 * @fprog: the filter program
1259 * @sk: the socket to use
1260 *
1261 * Attach the user's filter code. We first run some sanity checks on
1262 * it to make sure it does not explode on us later. If an error
1263 * occurs or there is insufficient memory for the filter a negative
1264 * errno code is returned. On success the return is zero.
1265 */
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +02001266int sk_attach_filter(struct sock_fprog *fprog, struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267{
Craig Gallek538950a2016-01-04 17:41:47 -05001268 struct bpf_prog *prog = __get_filter(fprog, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 int err;
1270
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001271 if (IS_ERR(prog))
1272 return PTR_ERR(prog);
1273
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +02001274 err = __sk_attach_prog(prog, sk);
Daniel Borkmann49b31e52015-03-02 12:25:51 +01001275 if (err < 0) {
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001276 __bpf_prog_release(prog);
Daniel Borkmann49b31e52015-03-02 12:25:51 +01001277 return err;
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001278 }
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01001279
Pavel Emelyanovd3904b72007-10-17 21:22:17 -07001280 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281}
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +02001282EXPORT_SYMBOL_GPL(sk_attach_filter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Craig Gallek538950a2016-01-04 17:41:47 -05001284int sk_reuseport_attach_filter(struct sock_fprog *fprog, struct sock *sk)
Alexei Starovoitov89aa0752014-12-01 15:06:35 -08001285{
Craig Gallek538950a2016-01-04 17:41:47 -05001286 struct bpf_prog *prog = __get_filter(fprog, sk);
Daniel Borkmann49b31e52015-03-02 12:25:51 +01001287 int err;
Alexei Starovoitov89aa0752014-12-01 15:06:35 -08001288
Alexei Starovoitov198bf1b2014-12-10 20:14:55 -08001289 if (IS_ERR(prog))
1290 return PTR_ERR(prog);
Alexei Starovoitov89aa0752014-12-01 15:06:35 -08001291
Craig Gallek538950a2016-01-04 17:41:47 -05001292 err = __reuseport_attach_prog(prog, sk);
1293 if (err < 0) {
1294 __bpf_prog_release(prog);
1295 return err;
Alexei Starovoitov89aa0752014-12-01 15:06:35 -08001296 }
1297
Craig Gallek538950a2016-01-04 17:41:47 -05001298 return 0;
1299}
1300
1301static struct bpf_prog *__get_bpf(u32 ufd, struct sock *sk)
1302{
Craig Gallek538950a2016-01-04 17:41:47 -05001303 if (sock_flag(sk, SOCK_FILTER_LOCKED))
1304 return ERR_PTR(-EPERM);
1305
Daniel Borkmann113214b2016-06-30 17:24:44 +02001306 return bpf_prog_get_type(ufd, BPF_PROG_TYPE_SOCKET_FILTER);
Craig Gallek538950a2016-01-04 17:41:47 -05001307}
1308
1309int sk_attach_bpf(u32 ufd, struct sock *sk)
1310{
1311 struct bpf_prog *prog = __get_bpf(ufd, sk);
1312 int err;
1313
1314 if (IS_ERR(prog))
1315 return PTR_ERR(prog);
1316
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +02001317 err = __sk_attach_prog(prog, sk);
Daniel Borkmann49b31e52015-03-02 12:25:51 +01001318 if (err < 0) {
Alexei Starovoitov89aa0752014-12-01 15:06:35 -08001319 bpf_prog_put(prog);
Daniel Borkmann49b31e52015-03-02 12:25:51 +01001320 return err;
Alexei Starovoitov89aa0752014-12-01 15:06:35 -08001321 }
Alexei Starovoitov89aa0752014-12-01 15:06:35 -08001322
Alexei Starovoitov89aa0752014-12-01 15:06:35 -08001323 return 0;
1324}
1325
Craig Gallek538950a2016-01-04 17:41:47 -05001326int sk_reuseport_attach_bpf(u32 ufd, struct sock *sk)
1327{
1328 struct bpf_prog *prog = __get_bpf(ufd, sk);
1329 int err;
1330
1331 if (IS_ERR(prog))
1332 return PTR_ERR(prog);
1333
1334 err = __reuseport_attach_prog(prog, sk);
1335 if (err < 0) {
1336 bpf_prog_put(prog);
1337 return err;
1338 }
1339
1340 return 0;
1341}
1342
Daniel Borkmann21cafc12016-02-19 23:05:24 +01001343struct bpf_scratchpad {
1344 union {
1345 __be32 diff[MAX_BPF_STACK / sizeof(__be32)];
1346 u8 buff[MAX_BPF_STACK];
1347 };
1348};
1349
1350static DEFINE_PER_CPU(struct bpf_scratchpad, bpf_sp);
Alexei Starovoitov91bc48222015-04-01 17:12:13 -07001351
Daniel Borkmann5293efe2016-08-18 01:00:39 +02001352static inline int __bpf_try_make_writable(struct sk_buff *skb,
1353 unsigned int write_len)
1354{
1355 return skb_ensure_writable(skb, write_len);
1356}
1357
Alexei Starovoitovdb58ba42016-05-05 19:49:12 -07001358static inline int bpf_try_make_writable(struct sk_buff *skb,
1359 unsigned int write_len)
1360{
Daniel Borkmann5293efe2016-08-18 01:00:39 +02001361 int err = __bpf_try_make_writable(skb, write_len);
Alexei Starovoitovdb58ba42016-05-05 19:49:12 -07001362
Daniel Borkmann0ed661d2016-08-11 21:38:37 +02001363 bpf_compute_data_end(skb);
Alexei Starovoitovdb58ba42016-05-05 19:49:12 -07001364 return err;
1365}
1366
Daniel Borkmann36bbef52016-09-20 00:26:13 +02001367static int bpf_try_make_head_writable(struct sk_buff *skb)
1368{
1369 return bpf_try_make_writable(skb, skb_headlen(skb));
1370}
1371
Daniel Borkmanna2bfe6b2016-08-05 00:11:11 +02001372static inline void bpf_push_mac_rcsum(struct sk_buff *skb)
1373{
1374 if (skb_at_tc_ingress(skb))
1375 skb_postpush_rcsum(skb, skb_mac_header(skb), skb->mac_len);
1376}
1377
Daniel Borkmann80656942016-08-05 00:11:13 +02001378static inline void bpf_pull_mac_rcsum(struct sk_buff *skb)
1379{
1380 if (skb_at_tc_ingress(skb))
1381 skb_postpull_rcsum(skb, skb_mac_header(skb), skb->mac_len);
1382}
1383
Daniel Borkmannf3694e02016-09-09 02:45:31 +02001384BPF_CALL_5(bpf_skb_store_bytes, struct sk_buff *, skb, u32, offset,
1385 const void *, from, u32, len, u64, flags)
Alexei Starovoitov608cd712015-03-26 19:53:57 -07001386{
Alexei Starovoitov608cd712015-03-26 19:53:57 -07001387 void *ptr;
1388
Daniel Borkmann8afd54c2016-03-04 15:15:03 +01001389 if (unlikely(flags & ~(BPF_F_RECOMPUTE_CSUM | BPF_F_INVALIDATE_HASH)))
Daniel Borkmann781c53b2016-01-11 01:16:38 +01001390 return -EINVAL;
Daniel Borkmann0ed661d2016-08-11 21:38:37 +02001391 if (unlikely(offset > 0xffff))
Alexei Starovoitov608cd712015-03-26 19:53:57 -07001392 return -EFAULT;
Alexei Starovoitovdb58ba42016-05-05 19:49:12 -07001393 if (unlikely(bpf_try_make_writable(skb, offset + len)))
Alexei Starovoitov608cd712015-03-26 19:53:57 -07001394 return -EFAULT;
1395
Daniel Borkmann0ed661d2016-08-11 21:38:37 +02001396 ptr = skb->data + offset;
Daniel Borkmann781c53b2016-01-11 01:16:38 +01001397 if (flags & BPF_F_RECOMPUTE_CSUM)
Daniel Borkmann479ffcc2016-08-05 00:11:12 +02001398 __skb_postpull_rcsum(skb, ptr, len, offset);
Alexei Starovoitov608cd712015-03-26 19:53:57 -07001399
1400 memcpy(ptr, from, len);
1401
Daniel Borkmann781c53b2016-01-11 01:16:38 +01001402 if (flags & BPF_F_RECOMPUTE_CSUM)
Daniel Borkmann479ffcc2016-08-05 00:11:12 +02001403 __skb_postpush_rcsum(skb, ptr, len, offset);
Daniel Borkmann8afd54c2016-03-04 15:15:03 +01001404 if (flags & BPF_F_INVALIDATE_HASH)
1405 skb_clear_hash(skb);
Daniel Borkmannf8ffad692016-01-07 15:50:23 +01001406
Alexei Starovoitov608cd712015-03-26 19:53:57 -07001407 return 0;
1408}
1409
Daniel Borkmann577c50a2016-03-04 15:15:04 +01001410static const struct bpf_func_proto bpf_skb_store_bytes_proto = {
Alexei Starovoitov608cd712015-03-26 19:53:57 -07001411 .func = bpf_skb_store_bytes,
1412 .gpl_only = false,
1413 .ret_type = RET_INTEGER,
1414 .arg1_type = ARG_PTR_TO_CTX,
1415 .arg2_type = ARG_ANYTHING,
1416 .arg3_type = ARG_PTR_TO_STACK,
1417 .arg4_type = ARG_CONST_STACK_SIZE,
Alexei Starovoitov91bc48222015-04-01 17:12:13 -07001418 .arg5_type = ARG_ANYTHING,
1419};
1420
Daniel Borkmannf3694e02016-09-09 02:45:31 +02001421BPF_CALL_4(bpf_skb_load_bytes, const struct sk_buff *, skb, u32, offset,
1422 void *, to, u32, len)
Daniel Borkmann05c74e52015-12-17 23:51:53 +01001423{
Daniel Borkmann05c74e52015-12-17 23:51:53 +01001424 void *ptr;
1425
Daniel Borkmann0ed661d2016-08-11 21:38:37 +02001426 if (unlikely(offset > 0xffff))
Daniel Borkmann074f5282016-04-13 00:10:52 +02001427 goto err_clear;
Daniel Borkmann05c74e52015-12-17 23:51:53 +01001428
1429 ptr = skb_header_pointer(skb, offset, len, to);
1430 if (unlikely(!ptr))
Daniel Borkmann074f5282016-04-13 00:10:52 +02001431 goto err_clear;
Daniel Borkmann05c74e52015-12-17 23:51:53 +01001432 if (ptr != to)
1433 memcpy(to, ptr, len);
1434
1435 return 0;
Daniel Borkmann074f5282016-04-13 00:10:52 +02001436err_clear:
1437 memset(to, 0, len);
1438 return -EFAULT;
Daniel Borkmann05c74e52015-12-17 23:51:53 +01001439}
1440
Daniel Borkmann577c50a2016-03-04 15:15:04 +01001441static const struct bpf_func_proto bpf_skb_load_bytes_proto = {
Daniel Borkmann05c74e52015-12-17 23:51:53 +01001442 .func = bpf_skb_load_bytes,
1443 .gpl_only = false,
1444 .ret_type = RET_INTEGER,
1445 .arg1_type = ARG_PTR_TO_CTX,
1446 .arg2_type = ARG_ANYTHING,
Daniel Borkmann074f5282016-04-13 00:10:52 +02001447 .arg3_type = ARG_PTR_TO_RAW_STACK,
Daniel Borkmann05c74e52015-12-17 23:51:53 +01001448 .arg4_type = ARG_CONST_STACK_SIZE,
1449};
1450
Daniel Borkmann36bbef52016-09-20 00:26:13 +02001451BPF_CALL_2(bpf_skb_pull_data, struct sk_buff *, skb, u32, len)
1452{
1453 /* Idea is the following: should the needed direct read/write
1454 * test fail during runtime, we can pull in more data and redo
1455 * again, since implicitly, we invalidate previous checks here.
1456 *
1457 * Or, since we know how much we need to make read/writeable,
1458 * this can be done once at the program beginning for direct
1459 * access case. By this we overcome limitations of only current
1460 * headroom being accessible.
1461 */
1462 return bpf_try_make_writable(skb, len ? : skb_headlen(skb));
1463}
1464
1465static const struct bpf_func_proto bpf_skb_pull_data_proto = {
1466 .func = bpf_skb_pull_data,
1467 .gpl_only = false,
1468 .ret_type = RET_INTEGER,
1469 .arg1_type = ARG_PTR_TO_CTX,
1470 .arg2_type = ARG_ANYTHING,
1471};
1472
Daniel Borkmannf3694e02016-09-09 02:45:31 +02001473BPF_CALL_5(bpf_l3_csum_replace, struct sk_buff *, skb, u32, offset,
1474 u64, from, u64, to, u64, flags)
Alexei Starovoitov91bc48222015-04-01 17:12:13 -07001475{
Daniel Borkmann0ed661d2016-08-11 21:38:37 +02001476 __sum16 *ptr;
Alexei Starovoitov91bc48222015-04-01 17:12:13 -07001477
Daniel Borkmann781c53b2016-01-11 01:16:38 +01001478 if (unlikely(flags & ~(BPF_F_HDR_FIELD_MASK)))
1479 return -EINVAL;
Daniel Borkmann0ed661d2016-08-11 21:38:37 +02001480 if (unlikely(offset > 0xffff || offset & 1))
Alexei Starovoitov91bc48222015-04-01 17:12:13 -07001481 return -EFAULT;
Daniel Borkmann0ed661d2016-08-11 21:38:37 +02001482 if (unlikely(bpf_try_make_writable(skb, offset + sizeof(*ptr))))
Alexei Starovoitov91bc48222015-04-01 17:12:13 -07001483 return -EFAULT;
1484
Daniel Borkmann0ed661d2016-08-11 21:38:37 +02001485 ptr = (__sum16 *)(skb->data + offset);
Daniel Borkmann781c53b2016-01-11 01:16:38 +01001486 switch (flags & BPF_F_HDR_FIELD_MASK) {
Daniel Borkmann8050c0f2016-03-04 15:15:02 +01001487 case 0:
1488 if (unlikely(from != 0))
1489 return -EINVAL;
1490
1491 csum_replace_by_diff(ptr, to);
1492 break;
Alexei Starovoitov91bc48222015-04-01 17:12:13 -07001493 case 2:
1494 csum_replace2(ptr, from, to);
1495 break;
1496 case 4:
1497 csum_replace4(ptr, from, to);
1498 break;
1499 default:
1500 return -EINVAL;
1501 }
1502
Alexei Starovoitov91bc48222015-04-01 17:12:13 -07001503 return 0;
1504}
1505
Daniel Borkmann577c50a2016-03-04 15:15:04 +01001506static const struct bpf_func_proto bpf_l3_csum_replace_proto = {
Alexei Starovoitov91bc48222015-04-01 17:12:13 -07001507 .func = bpf_l3_csum_replace,
1508 .gpl_only = false,
1509 .ret_type = RET_INTEGER,
1510 .arg1_type = ARG_PTR_TO_CTX,
1511 .arg2_type = ARG_ANYTHING,
1512 .arg3_type = ARG_ANYTHING,
1513 .arg4_type = ARG_ANYTHING,
1514 .arg5_type = ARG_ANYTHING,
1515};
1516
Daniel Borkmannf3694e02016-09-09 02:45:31 +02001517BPF_CALL_5(bpf_l4_csum_replace, struct sk_buff *, skb, u32, offset,
1518 u64, from, u64, to, u64, flags)
Alexei Starovoitov91bc48222015-04-01 17:12:13 -07001519{
Daniel Borkmann781c53b2016-01-11 01:16:38 +01001520 bool is_pseudo = flags & BPF_F_PSEUDO_HDR;
Daniel Borkmann2f729592016-02-19 23:05:26 +01001521 bool is_mmzero = flags & BPF_F_MARK_MANGLED_0;
Daniel Borkmann0ed661d2016-08-11 21:38:37 +02001522 __sum16 *ptr;
Alexei Starovoitov91bc48222015-04-01 17:12:13 -07001523
Daniel Borkmann2f729592016-02-19 23:05:26 +01001524 if (unlikely(flags & ~(BPF_F_MARK_MANGLED_0 | BPF_F_PSEUDO_HDR |
1525 BPF_F_HDR_FIELD_MASK)))
Daniel Borkmann781c53b2016-01-11 01:16:38 +01001526 return -EINVAL;
Daniel Borkmann0ed661d2016-08-11 21:38:37 +02001527 if (unlikely(offset > 0xffff || offset & 1))
Alexei Starovoitov91bc48222015-04-01 17:12:13 -07001528 return -EFAULT;
Daniel Borkmann0ed661d2016-08-11 21:38:37 +02001529 if (unlikely(bpf_try_make_writable(skb, offset + sizeof(*ptr))))
Alexei Starovoitov91bc48222015-04-01 17:12:13 -07001530 return -EFAULT;
1531
Daniel Borkmann0ed661d2016-08-11 21:38:37 +02001532 ptr = (__sum16 *)(skb->data + offset);
Daniel Borkmann2f729592016-02-19 23:05:26 +01001533 if (is_mmzero && !*ptr)
1534 return 0;
Alexei Starovoitov91bc48222015-04-01 17:12:13 -07001535
Daniel Borkmann781c53b2016-01-11 01:16:38 +01001536 switch (flags & BPF_F_HDR_FIELD_MASK) {
Daniel Borkmann7d672342016-02-19 23:05:23 +01001537 case 0:
1538 if (unlikely(from != 0))
1539 return -EINVAL;
1540
1541 inet_proto_csum_replace_by_diff(ptr, skb, to, is_pseudo);
1542 break;
Alexei Starovoitov91bc48222015-04-01 17:12:13 -07001543 case 2:
1544 inet_proto_csum_replace2(ptr, skb, from, to, is_pseudo);
1545 break;
1546 case 4:
1547 inet_proto_csum_replace4(ptr, skb, from, to, is_pseudo);
1548 break;
1549 default:
1550 return -EINVAL;
1551 }
1552
Daniel Borkmann2f729592016-02-19 23:05:26 +01001553 if (is_mmzero && !*ptr)
1554 *ptr = CSUM_MANGLED_0;
Alexei Starovoitov91bc48222015-04-01 17:12:13 -07001555 return 0;
1556}
1557
Daniel Borkmann577c50a2016-03-04 15:15:04 +01001558static const struct bpf_func_proto bpf_l4_csum_replace_proto = {
Alexei Starovoitov91bc48222015-04-01 17:12:13 -07001559 .func = bpf_l4_csum_replace,
1560 .gpl_only = false,
1561 .ret_type = RET_INTEGER,
1562 .arg1_type = ARG_PTR_TO_CTX,
1563 .arg2_type = ARG_ANYTHING,
1564 .arg3_type = ARG_ANYTHING,
1565 .arg4_type = ARG_ANYTHING,
1566 .arg5_type = ARG_ANYTHING,
Alexei Starovoitov608cd712015-03-26 19:53:57 -07001567};
1568
Daniel Borkmannf3694e02016-09-09 02:45:31 +02001569BPF_CALL_5(bpf_csum_diff, __be32 *, from, u32, from_size,
1570 __be32 *, to, u32, to_size, __wsum, seed)
Daniel Borkmann7d672342016-02-19 23:05:23 +01001571{
Daniel Borkmann21cafc12016-02-19 23:05:24 +01001572 struct bpf_scratchpad *sp = this_cpu_ptr(&bpf_sp);
Daniel Borkmannf3694e02016-09-09 02:45:31 +02001573 u32 diff_size = from_size + to_size;
Daniel Borkmann7d672342016-02-19 23:05:23 +01001574 int i, j = 0;
1575
1576 /* This is quite flexible, some examples:
1577 *
1578 * from_size == 0, to_size > 0, seed := csum --> pushing data
1579 * from_size > 0, to_size == 0, seed := csum --> pulling data
1580 * from_size > 0, to_size > 0, seed := 0 --> diffing data
1581 *
1582 * Even for diffing, from_size and to_size don't need to be equal.
1583 */
1584 if (unlikely(((from_size | to_size) & (sizeof(__be32) - 1)) ||
1585 diff_size > sizeof(sp->diff)))
1586 return -EINVAL;
1587
1588 for (i = 0; i < from_size / sizeof(__be32); i++, j++)
1589 sp->diff[j] = ~from[i];
1590 for (i = 0; i < to_size / sizeof(__be32); i++, j++)
1591 sp->diff[j] = to[i];
1592
1593 return csum_partial(sp->diff, diff_size, seed);
1594}
1595
Daniel Borkmann577c50a2016-03-04 15:15:04 +01001596static const struct bpf_func_proto bpf_csum_diff_proto = {
Daniel Borkmann7d672342016-02-19 23:05:23 +01001597 .func = bpf_csum_diff,
1598 .gpl_only = false,
Daniel Borkmann36bbef52016-09-20 00:26:13 +02001599 .pkt_access = true,
Daniel Borkmann7d672342016-02-19 23:05:23 +01001600 .ret_type = RET_INTEGER,
1601 .arg1_type = ARG_PTR_TO_STACK,
1602 .arg2_type = ARG_CONST_STACK_SIZE_OR_ZERO,
1603 .arg3_type = ARG_PTR_TO_STACK,
1604 .arg4_type = ARG_CONST_STACK_SIZE_OR_ZERO,
1605 .arg5_type = ARG_ANYTHING,
1606};
1607
Daniel Borkmann36bbef52016-09-20 00:26:13 +02001608BPF_CALL_2(bpf_csum_update, struct sk_buff *, skb, __wsum, csum)
1609{
1610 /* The interface is to be used in combination with bpf_csum_diff()
1611 * for direct packet writes. csum rotation for alignment as well
1612 * as emulating csum_sub() can be done from the eBPF program.
1613 */
1614 if (skb->ip_summed == CHECKSUM_COMPLETE)
1615 return (skb->csum = csum_add(skb->csum, csum));
1616
1617 return -ENOTSUPP;
1618}
1619
1620static const struct bpf_func_proto bpf_csum_update_proto = {
1621 .func = bpf_csum_update,
1622 .gpl_only = false,
1623 .ret_type = RET_INTEGER,
1624 .arg1_type = ARG_PTR_TO_CTX,
1625 .arg2_type = ARG_ANYTHING,
1626};
1627
Daniel Borkmanna70b5062016-06-10 21:19:06 +02001628static inline int __bpf_rx_skb(struct net_device *dev, struct sk_buff *skb)
1629{
Daniel Borkmanna70b5062016-06-10 21:19:06 +02001630 return dev_forward_skb(dev, skb);
1631}
1632
Martin KaFai Lau4e3264d2016-11-09 15:36:33 -08001633static inline int __bpf_rx_skb_no_mac(struct net_device *dev,
1634 struct sk_buff *skb)
1635{
1636 int ret = ____dev_forward_skb(dev, skb);
1637
1638 if (likely(!ret)) {
1639 skb->dev = dev;
1640 ret = netif_rx(skb);
1641 }
1642
1643 return ret;
1644}
1645
Daniel Borkmanna70b5062016-06-10 21:19:06 +02001646static inline int __bpf_tx_skb(struct net_device *dev, struct sk_buff *skb)
1647{
1648 int ret;
1649
1650 if (unlikely(__this_cpu_read(xmit_recursion) > XMIT_RECURSION_LIMIT)) {
1651 net_crit_ratelimited("bpf: recursion limit reached on datapath, buggy bpf program?\n");
1652 kfree_skb(skb);
1653 return -ENETDOWN;
1654 }
1655
1656 skb->dev = dev;
1657
1658 __this_cpu_inc(xmit_recursion);
1659 ret = dev_queue_xmit(skb);
1660 __this_cpu_dec(xmit_recursion);
1661
1662 return ret;
1663}
1664
Martin KaFai Lau4e3264d2016-11-09 15:36:33 -08001665static int __bpf_redirect_no_mac(struct sk_buff *skb, struct net_device *dev,
1666 u32 flags)
1667{
1668 /* skb->mac_len is not set on normal egress */
1669 unsigned int mlen = skb->network_header - skb->mac_header;
1670
1671 __skb_pull(skb, mlen);
1672
1673 /* At ingress, the mac header has already been pulled once.
1674 * At egress, skb_pospull_rcsum has to be done in case that
1675 * the skb is originated from ingress (i.e. a forwarded skb)
1676 * to ensure that rcsum starts at net header.
1677 */
1678 if (!skb_at_tc_ingress(skb))
1679 skb_postpull_rcsum(skb, skb_mac_header(skb), mlen);
1680 skb_pop_mac_header(skb);
1681 skb_reset_mac_len(skb);
1682 return flags & BPF_F_INGRESS ?
1683 __bpf_rx_skb_no_mac(dev, skb) : __bpf_tx_skb(dev, skb);
1684}
1685
1686static int __bpf_redirect_common(struct sk_buff *skb, struct net_device *dev,
1687 u32 flags)
1688{
1689 bpf_push_mac_rcsum(skb);
1690 return flags & BPF_F_INGRESS ?
1691 __bpf_rx_skb(dev, skb) : __bpf_tx_skb(dev, skb);
1692}
1693
1694static int __bpf_redirect(struct sk_buff *skb, struct net_device *dev,
1695 u32 flags)
1696{
1697 switch (dev->type) {
1698 case ARPHRD_TUNNEL:
1699 case ARPHRD_TUNNEL6:
1700 case ARPHRD_SIT:
1701 case ARPHRD_IPGRE:
1702 case ARPHRD_VOID:
1703 case ARPHRD_NONE:
1704 return __bpf_redirect_no_mac(skb, dev, flags);
1705 default:
1706 return __bpf_redirect_common(skb, dev, flags);
1707 }
1708}
1709
Daniel Borkmannf3694e02016-09-09 02:45:31 +02001710BPF_CALL_3(bpf_clone_redirect, struct sk_buff *, skb, u32, ifindex, u64, flags)
Alexei Starovoitov3896d652015-06-02 16:03:14 -07001711{
Alexei Starovoitov3896d652015-06-02 16:03:14 -07001712 struct net_device *dev;
Daniel Borkmann36bbef52016-09-20 00:26:13 +02001713 struct sk_buff *clone;
1714 int ret;
Alexei Starovoitov3896d652015-06-02 16:03:14 -07001715
Daniel Borkmann781c53b2016-01-11 01:16:38 +01001716 if (unlikely(flags & ~(BPF_F_INGRESS)))
1717 return -EINVAL;
1718
Alexei Starovoitov3896d652015-06-02 16:03:14 -07001719 dev = dev_get_by_index_rcu(dev_net(skb->dev), ifindex);
1720 if (unlikely(!dev))
1721 return -EINVAL;
1722
Daniel Borkmann36bbef52016-09-20 00:26:13 +02001723 clone = skb_clone(skb, GFP_ATOMIC);
1724 if (unlikely(!clone))
Alexei Starovoitov3896d652015-06-02 16:03:14 -07001725 return -ENOMEM;
1726
Daniel Borkmann36bbef52016-09-20 00:26:13 +02001727 /* For direct write, we need to keep the invariant that the skbs
1728 * we're dealing with need to be uncloned. Should uncloning fail
1729 * here, we need to free the just generated clone to unclone once
1730 * again.
1731 */
1732 ret = bpf_try_make_head_writable(skb);
1733 if (unlikely(ret)) {
1734 kfree_skb(clone);
1735 return -ENOMEM;
1736 }
1737
Martin KaFai Lau4e3264d2016-11-09 15:36:33 -08001738 return __bpf_redirect(clone, dev, flags);
Alexei Starovoitov3896d652015-06-02 16:03:14 -07001739}
1740
Daniel Borkmann577c50a2016-03-04 15:15:04 +01001741static const struct bpf_func_proto bpf_clone_redirect_proto = {
Alexei Starovoitov3896d652015-06-02 16:03:14 -07001742 .func = bpf_clone_redirect,
1743 .gpl_only = false,
1744 .ret_type = RET_INTEGER,
1745 .arg1_type = ARG_PTR_TO_CTX,
1746 .arg2_type = ARG_ANYTHING,
1747 .arg3_type = ARG_ANYTHING,
1748};
1749
Alexei Starovoitov27b29f62015-09-15 23:05:43 -07001750struct redirect_info {
1751 u32 ifindex;
1752 u32 flags;
1753};
1754
1755static DEFINE_PER_CPU(struct redirect_info, redirect_info);
Daniel Borkmann781c53b2016-01-11 01:16:38 +01001756
Daniel Borkmannf3694e02016-09-09 02:45:31 +02001757BPF_CALL_2(bpf_redirect, u32, ifindex, u64, flags)
Alexei Starovoitov27b29f62015-09-15 23:05:43 -07001758{
1759 struct redirect_info *ri = this_cpu_ptr(&redirect_info);
1760
Daniel Borkmann781c53b2016-01-11 01:16:38 +01001761 if (unlikely(flags & ~(BPF_F_INGRESS)))
1762 return TC_ACT_SHOT;
1763
Alexei Starovoitov27b29f62015-09-15 23:05:43 -07001764 ri->ifindex = ifindex;
1765 ri->flags = flags;
Daniel Borkmann781c53b2016-01-11 01:16:38 +01001766
Alexei Starovoitov27b29f62015-09-15 23:05:43 -07001767 return TC_ACT_REDIRECT;
1768}
1769
1770int skb_do_redirect(struct sk_buff *skb)
1771{
1772 struct redirect_info *ri = this_cpu_ptr(&redirect_info);
1773 struct net_device *dev;
1774
1775 dev = dev_get_by_index_rcu(dev_net(skb->dev), ri->ifindex);
1776 ri->ifindex = 0;
1777 if (unlikely(!dev)) {
1778 kfree_skb(skb);
1779 return -EINVAL;
1780 }
1781
Martin KaFai Lau4e3264d2016-11-09 15:36:33 -08001782 return __bpf_redirect(skb, dev, ri->flags);
Alexei Starovoitov27b29f62015-09-15 23:05:43 -07001783}
1784
Daniel Borkmann577c50a2016-03-04 15:15:04 +01001785static const struct bpf_func_proto bpf_redirect_proto = {
Alexei Starovoitov27b29f62015-09-15 23:05:43 -07001786 .func = bpf_redirect,
1787 .gpl_only = false,
1788 .ret_type = RET_INTEGER,
1789 .arg1_type = ARG_ANYTHING,
1790 .arg2_type = ARG_ANYTHING,
1791};
1792
Daniel Borkmannf3694e02016-09-09 02:45:31 +02001793BPF_CALL_1(bpf_get_cgroup_classid, const struct sk_buff *, skb)
Daniel Borkmann8d20aab2015-07-15 14:21:42 +02001794{
Daniel Borkmannf3694e02016-09-09 02:45:31 +02001795 return task_get_classid(skb);
Daniel Borkmann8d20aab2015-07-15 14:21:42 +02001796}
1797
1798static const struct bpf_func_proto bpf_get_cgroup_classid_proto = {
1799 .func = bpf_get_cgroup_classid,
1800 .gpl_only = false,
1801 .ret_type = RET_INTEGER,
1802 .arg1_type = ARG_PTR_TO_CTX,
1803};
1804
Daniel Borkmannf3694e02016-09-09 02:45:31 +02001805BPF_CALL_1(bpf_get_route_realm, const struct sk_buff *, skb)
Daniel Borkmannc46646d2015-09-30 01:41:51 +02001806{
Daniel Borkmannf3694e02016-09-09 02:45:31 +02001807 return dst_tclassid(skb);
Daniel Borkmannc46646d2015-09-30 01:41:51 +02001808}
1809
1810static const struct bpf_func_proto bpf_get_route_realm_proto = {
1811 .func = bpf_get_route_realm,
1812 .gpl_only = false,
1813 .ret_type = RET_INTEGER,
1814 .arg1_type = ARG_PTR_TO_CTX,
1815};
1816
Daniel Borkmannf3694e02016-09-09 02:45:31 +02001817BPF_CALL_1(bpf_get_hash_recalc, struct sk_buff *, skb)
Daniel Borkmann13c5c242016-07-03 01:28:47 +02001818{
1819 /* If skb_clear_hash() was called due to mangling, we can
1820 * trigger SW recalculation here. Later access to hash
1821 * can then use the inline skb->hash via context directly
1822 * instead of calling this helper again.
1823 */
Daniel Borkmannf3694e02016-09-09 02:45:31 +02001824 return skb_get_hash(skb);
Daniel Borkmann13c5c242016-07-03 01:28:47 +02001825}
1826
1827static const struct bpf_func_proto bpf_get_hash_recalc_proto = {
1828 .func = bpf_get_hash_recalc,
1829 .gpl_only = false,
1830 .ret_type = RET_INTEGER,
1831 .arg1_type = ARG_PTR_TO_CTX,
1832};
1833
Daniel Borkmann7a4b28c2016-09-23 01:28:37 +02001834BPF_CALL_1(bpf_set_hash_invalid, struct sk_buff *, skb)
1835{
1836 /* After all direct packet write, this can be used once for
1837 * triggering a lazy recalc on next skb_get_hash() invocation.
1838 */
1839 skb_clear_hash(skb);
1840 return 0;
1841}
1842
1843static const struct bpf_func_proto bpf_set_hash_invalid_proto = {
1844 .func = bpf_set_hash_invalid,
1845 .gpl_only = false,
1846 .ret_type = RET_INTEGER,
1847 .arg1_type = ARG_PTR_TO_CTX,
1848};
1849
Daniel Borkmannf3694e02016-09-09 02:45:31 +02001850BPF_CALL_3(bpf_skb_vlan_push, struct sk_buff *, skb, __be16, vlan_proto,
1851 u16, vlan_tci)
Alexei Starovoitov4e10df92015-07-20 20:34:18 -07001852{
Alexei Starovoitovdb58ba42016-05-05 19:49:12 -07001853 int ret;
Alexei Starovoitov4e10df92015-07-20 20:34:18 -07001854
1855 if (unlikely(vlan_proto != htons(ETH_P_8021Q) &&
1856 vlan_proto != htons(ETH_P_8021AD)))
1857 vlan_proto = htons(ETH_P_8021Q);
1858
Daniel Borkmann80656942016-08-05 00:11:13 +02001859 bpf_push_mac_rcsum(skb);
Alexei Starovoitovdb58ba42016-05-05 19:49:12 -07001860 ret = skb_vlan_push(skb, vlan_proto, vlan_tci);
Daniel Borkmann80656942016-08-05 00:11:13 +02001861 bpf_pull_mac_rcsum(skb);
1862
Alexei Starovoitovdb58ba42016-05-05 19:49:12 -07001863 bpf_compute_data_end(skb);
1864 return ret;
Alexei Starovoitov4e10df92015-07-20 20:34:18 -07001865}
1866
1867const struct bpf_func_proto bpf_skb_vlan_push_proto = {
1868 .func = bpf_skb_vlan_push,
1869 .gpl_only = false,
1870 .ret_type = RET_INTEGER,
1871 .arg1_type = ARG_PTR_TO_CTX,
1872 .arg2_type = ARG_ANYTHING,
1873 .arg3_type = ARG_ANYTHING,
1874};
Alexei Starovoitov4d9c5c52015-07-20 20:34:19 -07001875EXPORT_SYMBOL_GPL(bpf_skb_vlan_push_proto);
Alexei Starovoitov4e10df92015-07-20 20:34:18 -07001876
Daniel Borkmannf3694e02016-09-09 02:45:31 +02001877BPF_CALL_1(bpf_skb_vlan_pop, struct sk_buff *, skb)
Alexei Starovoitov4e10df92015-07-20 20:34:18 -07001878{
Alexei Starovoitovdb58ba42016-05-05 19:49:12 -07001879 int ret;
Alexei Starovoitov4e10df92015-07-20 20:34:18 -07001880
Daniel Borkmann80656942016-08-05 00:11:13 +02001881 bpf_push_mac_rcsum(skb);
Alexei Starovoitovdb58ba42016-05-05 19:49:12 -07001882 ret = skb_vlan_pop(skb);
Daniel Borkmann80656942016-08-05 00:11:13 +02001883 bpf_pull_mac_rcsum(skb);
1884
Alexei Starovoitovdb58ba42016-05-05 19:49:12 -07001885 bpf_compute_data_end(skb);
1886 return ret;
Alexei Starovoitov4e10df92015-07-20 20:34:18 -07001887}
1888
1889const struct bpf_func_proto bpf_skb_vlan_pop_proto = {
1890 .func = bpf_skb_vlan_pop,
1891 .gpl_only = false,
1892 .ret_type = RET_INTEGER,
1893 .arg1_type = ARG_PTR_TO_CTX,
1894};
Alexei Starovoitov4d9c5c52015-07-20 20:34:19 -07001895EXPORT_SYMBOL_GPL(bpf_skb_vlan_pop_proto);
Alexei Starovoitov4e10df92015-07-20 20:34:18 -07001896
Daniel Borkmann65781712016-06-28 12:18:27 +02001897static int bpf_skb_generic_push(struct sk_buff *skb, u32 off, u32 len)
1898{
1899 /* Caller already did skb_cow() with len as headroom,
1900 * so no need to do it here.
1901 */
1902 skb_push(skb, len);
1903 memmove(skb->data, skb->data + len, off);
1904 memset(skb->data + off, 0, len);
1905
1906 /* No skb_postpush_rcsum(skb, skb->data + off, len)
1907 * needed here as it does not change the skb->csum
1908 * result for checksum complete when summing over
1909 * zeroed blocks.
1910 */
1911 return 0;
1912}
1913
1914static int bpf_skb_generic_pop(struct sk_buff *skb, u32 off, u32 len)
1915{
1916 /* skb_ensure_writable() is not needed here, as we're
1917 * already working on an uncloned skb.
1918 */
1919 if (unlikely(!pskb_may_pull(skb, off + len)))
1920 return -ENOMEM;
1921
1922 skb_postpull_rcsum(skb, skb->data + off, len);
1923 memmove(skb->data + len, skb->data, off);
1924 __skb_pull(skb, len);
1925
1926 return 0;
1927}
1928
1929static int bpf_skb_net_hdr_push(struct sk_buff *skb, u32 off, u32 len)
1930{
1931 bool trans_same = skb->transport_header == skb->network_header;
1932 int ret;
1933
1934 /* There's no need for __skb_push()/__skb_pull() pair to
1935 * get to the start of the mac header as we're guaranteed
1936 * to always start from here under eBPF.
1937 */
1938 ret = bpf_skb_generic_push(skb, off, len);
1939 if (likely(!ret)) {
1940 skb->mac_header -= len;
1941 skb->network_header -= len;
1942 if (trans_same)
1943 skb->transport_header = skb->network_header;
1944 }
1945
1946 return ret;
1947}
1948
1949static int bpf_skb_net_hdr_pop(struct sk_buff *skb, u32 off, u32 len)
1950{
1951 bool trans_same = skb->transport_header == skb->network_header;
1952 int ret;
1953
1954 /* Same here, __skb_push()/__skb_pull() pair not needed. */
1955 ret = bpf_skb_generic_pop(skb, off, len);
1956 if (likely(!ret)) {
1957 skb->mac_header += len;
1958 skb->network_header += len;
1959 if (trans_same)
1960 skb->transport_header = skb->network_header;
1961 }
1962
1963 return ret;
1964}
1965
1966static int bpf_skb_proto_4_to_6(struct sk_buff *skb)
1967{
1968 const u32 len_diff = sizeof(struct ipv6hdr) - sizeof(struct iphdr);
1969 u32 off = skb->network_header - skb->mac_header;
1970 int ret;
1971
1972 ret = skb_cow(skb, len_diff);
1973 if (unlikely(ret < 0))
1974 return ret;
1975
1976 ret = bpf_skb_net_hdr_push(skb, off, len_diff);
1977 if (unlikely(ret < 0))
1978 return ret;
1979
1980 if (skb_is_gso(skb)) {
1981 /* SKB_GSO_UDP stays as is. SKB_GSO_TCPV4 needs to
1982 * be changed into SKB_GSO_TCPV6.
1983 */
1984 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4) {
1985 skb_shinfo(skb)->gso_type &= ~SKB_GSO_TCPV4;
1986 skb_shinfo(skb)->gso_type |= SKB_GSO_TCPV6;
1987 }
1988
1989 /* Due to IPv6 header, MSS needs to be downgraded. */
1990 skb_shinfo(skb)->gso_size -= len_diff;
1991 /* Header must be checked, and gso_segs recomputed. */
1992 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
1993 skb_shinfo(skb)->gso_segs = 0;
1994 }
1995
1996 skb->protocol = htons(ETH_P_IPV6);
1997 skb_clear_hash(skb);
1998
1999 return 0;
2000}
2001
2002static int bpf_skb_proto_6_to_4(struct sk_buff *skb)
2003{
2004 const u32 len_diff = sizeof(struct ipv6hdr) - sizeof(struct iphdr);
2005 u32 off = skb->network_header - skb->mac_header;
2006 int ret;
2007
2008 ret = skb_unclone(skb, GFP_ATOMIC);
2009 if (unlikely(ret < 0))
2010 return ret;
2011
2012 ret = bpf_skb_net_hdr_pop(skb, off, len_diff);
2013 if (unlikely(ret < 0))
2014 return ret;
2015
2016 if (skb_is_gso(skb)) {
2017 /* SKB_GSO_UDP stays as is. SKB_GSO_TCPV6 needs to
2018 * be changed into SKB_GSO_TCPV4.
2019 */
2020 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6) {
2021 skb_shinfo(skb)->gso_type &= ~SKB_GSO_TCPV6;
2022 skb_shinfo(skb)->gso_type |= SKB_GSO_TCPV4;
2023 }
2024
2025 /* Due to IPv4 header, MSS can be upgraded. */
2026 skb_shinfo(skb)->gso_size += len_diff;
2027 /* Header must be checked, and gso_segs recomputed. */
2028 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
2029 skb_shinfo(skb)->gso_segs = 0;
2030 }
2031
2032 skb->protocol = htons(ETH_P_IP);
2033 skb_clear_hash(skb);
2034
2035 return 0;
2036}
2037
2038static int bpf_skb_proto_xlat(struct sk_buff *skb, __be16 to_proto)
2039{
2040 __be16 from_proto = skb->protocol;
2041
2042 if (from_proto == htons(ETH_P_IP) &&
2043 to_proto == htons(ETH_P_IPV6))
2044 return bpf_skb_proto_4_to_6(skb);
2045
2046 if (from_proto == htons(ETH_P_IPV6) &&
2047 to_proto == htons(ETH_P_IP))
2048 return bpf_skb_proto_6_to_4(skb);
2049
2050 return -ENOTSUPP;
2051}
2052
Daniel Borkmannf3694e02016-09-09 02:45:31 +02002053BPF_CALL_3(bpf_skb_change_proto, struct sk_buff *, skb, __be16, proto,
2054 u64, flags)
Daniel Borkmann65781712016-06-28 12:18:27 +02002055{
Daniel Borkmann65781712016-06-28 12:18:27 +02002056 int ret;
2057
2058 if (unlikely(flags))
2059 return -EINVAL;
2060
2061 /* General idea is that this helper does the basic groundwork
2062 * needed for changing the protocol, and eBPF program fills the
2063 * rest through bpf_skb_store_bytes(), bpf_lX_csum_replace()
2064 * and other helpers, rather than passing a raw buffer here.
2065 *
2066 * The rationale is to keep this minimal and without a need to
2067 * deal with raw packet data. F.e. even if we would pass buffers
2068 * here, the program still needs to call the bpf_lX_csum_replace()
2069 * helpers anyway. Plus, this way we keep also separation of
2070 * concerns, since f.e. bpf_skb_store_bytes() should only take
2071 * care of stores.
2072 *
2073 * Currently, additional options and extension header space are
2074 * not supported, but flags register is reserved so we can adapt
2075 * that. For offloads, we mark packet as dodgy, so that headers
2076 * need to be verified first.
2077 */
2078 ret = bpf_skb_proto_xlat(skb, proto);
2079 bpf_compute_data_end(skb);
2080 return ret;
2081}
2082
2083static const struct bpf_func_proto bpf_skb_change_proto_proto = {
2084 .func = bpf_skb_change_proto,
2085 .gpl_only = false,
2086 .ret_type = RET_INTEGER,
2087 .arg1_type = ARG_PTR_TO_CTX,
2088 .arg2_type = ARG_ANYTHING,
2089 .arg3_type = ARG_ANYTHING,
2090};
2091
Daniel Borkmannf3694e02016-09-09 02:45:31 +02002092BPF_CALL_2(bpf_skb_change_type, struct sk_buff *, skb, u32, pkt_type)
Daniel Borkmannd2485c42016-06-28 12:18:28 +02002093{
Daniel Borkmannd2485c42016-06-28 12:18:28 +02002094 /* We only allow a restricted subset to be changed for now. */
Daniel Borkmann45c7fff2016-08-18 01:00:38 +02002095 if (unlikely(!skb_pkt_type_ok(skb->pkt_type) ||
2096 !skb_pkt_type_ok(pkt_type)))
Daniel Borkmannd2485c42016-06-28 12:18:28 +02002097 return -EINVAL;
2098
2099 skb->pkt_type = pkt_type;
2100 return 0;
2101}
2102
2103static const struct bpf_func_proto bpf_skb_change_type_proto = {
2104 .func = bpf_skb_change_type,
2105 .gpl_only = false,
2106 .ret_type = RET_INTEGER,
2107 .arg1_type = ARG_PTR_TO_CTX,
2108 .arg2_type = ARG_ANYTHING,
2109};
2110
Daniel Borkmann5293efe2016-08-18 01:00:39 +02002111static u32 __bpf_skb_min_len(const struct sk_buff *skb)
2112{
2113 u32 min_len = skb_network_offset(skb);
2114
2115 if (skb_transport_header_was_set(skb))
2116 min_len = skb_transport_offset(skb);
2117 if (skb->ip_summed == CHECKSUM_PARTIAL)
2118 min_len = skb_checksum_start_offset(skb) +
2119 skb->csum_offset + sizeof(__sum16);
2120 return min_len;
2121}
2122
2123static u32 __bpf_skb_max_len(const struct sk_buff *skb)
2124{
Daniel Borkmann6088b582016-09-09 02:45:28 +02002125 return skb->dev->mtu + skb->dev->hard_header_len;
Daniel Borkmann5293efe2016-08-18 01:00:39 +02002126}
2127
2128static int bpf_skb_grow_rcsum(struct sk_buff *skb, unsigned int new_len)
2129{
2130 unsigned int old_len = skb->len;
2131 int ret;
2132
2133 ret = __skb_grow_rcsum(skb, new_len);
2134 if (!ret)
2135 memset(skb->data + old_len, 0, new_len - old_len);
2136 return ret;
2137}
2138
2139static int bpf_skb_trim_rcsum(struct sk_buff *skb, unsigned int new_len)
2140{
2141 return __skb_trim_rcsum(skb, new_len);
2142}
2143
Daniel Borkmannf3694e02016-09-09 02:45:31 +02002144BPF_CALL_3(bpf_skb_change_tail, struct sk_buff *, skb, u32, new_len,
2145 u64, flags)
Daniel Borkmann5293efe2016-08-18 01:00:39 +02002146{
Daniel Borkmann5293efe2016-08-18 01:00:39 +02002147 u32 max_len = __bpf_skb_max_len(skb);
2148 u32 min_len = __bpf_skb_min_len(skb);
Daniel Borkmann5293efe2016-08-18 01:00:39 +02002149 int ret;
2150
2151 if (unlikely(flags || new_len > max_len || new_len < min_len))
2152 return -EINVAL;
2153 if (skb->encapsulation)
2154 return -ENOTSUPP;
2155
2156 /* The basic idea of this helper is that it's performing the
2157 * needed work to either grow or trim an skb, and eBPF program
2158 * rewrites the rest via helpers like bpf_skb_store_bytes(),
2159 * bpf_lX_csum_replace() and others rather than passing a raw
2160 * buffer here. This one is a slow path helper and intended
2161 * for replies with control messages.
2162 *
2163 * Like in bpf_skb_change_proto(), we want to keep this rather
2164 * minimal and without protocol specifics so that we are able
2165 * to separate concerns as in bpf_skb_store_bytes() should only
2166 * be the one responsible for writing buffers.
2167 *
2168 * It's really expected to be a slow path operation here for
2169 * control message replies, so we're implicitly linearizing,
2170 * uncloning and drop offloads from the skb by this.
2171 */
2172 ret = __bpf_try_make_writable(skb, skb->len);
2173 if (!ret) {
2174 if (new_len > skb->len)
2175 ret = bpf_skb_grow_rcsum(skb, new_len);
2176 else if (new_len < skb->len)
2177 ret = bpf_skb_trim_rcsum(skb, new_len);
2178 if (!ret && skb_is_gso(skb))
2179 skb_gso_reset(skb);
2180 }
2181
2182 bpf_compute_data_end(skb);
2183 return ret;
2184}
2185
2186static const struct bpf_func_proto bpf_skb_change_tail_proto = {
2187 .func = bpf_skb_change_tail,
2188 .gpl_only = false,
2189 .ret_type = RET_INTEGER,
2190 .arg1_type = ARG_PTR_TO_CTX,
2191 .arg2_type = ARG_ANYTHING,
2192 .arg3_type = ARG_ANYTHING,
2193};
2194
Alexei Starovoitov4e10df92015-07-20 20:34:18 -07002195bool bpf_helper_changes_skb_data(void *func)
2196{
Daniel Borkmann36bbef52016-09-20 00:26:13 +02002197 if (func == bpf_skb_vlan_push ||
2198 func == bpf_skb_vlan_pop ||
2199 func == bpf_skb_store_bytes ||
2200 func == bpf_skb_change_proto ||
2201 func == bpf_skb_change_tail ||
2202 func == bpf_skb_pull_data ||
Daniel Borkmannc1133c62017-05-25 01:05:07 +02002203 func == bpf_clone_redirect ||
Daniel Borkmann36bbef52016-09-20 00:26:13 +02002204 func == bpf_l3_csum_replace ||
2205 func == bpf_l4_csum_replace)
Daniel Borkmann36976492016-02-19 23:05:25 +01002206 return true;
2207
Alexei Starovoitov4e10df92015-07-20 20:34:18 -07002208 return false;
2209}
2210
Daniel Borkmann555c8a82016-07-14 18:08:05 +02002211static unsigned long bpf_skb_copy(void *dst_buff, const void *skb,
Daniel Borkmannaa7145c2016-07-22 01:19:42 +02002212 unsigned long off, unsigned long len)
Daniel Borkmann555c8a82016-07-14 18:08:05 +02002213{
Daniel Borkmannaa7145c2016-07-22 01:19:42 +02002214 void *ptr = skb_header_pointer(skb, off, len, dst_buff);
Daniel Borkmann555c8a82016-07-14 18:08:05 +02002215
2216 if (unlikely(!ptr))
2217 return len;
2218 if (ptr != dst_buff)
2219 memcpy(dst_buff, ptr, len);
2220
2221 return 0;
2222}
2223
Daniel Borkmannf3694e02016-09-09 02:45:31 +02002224BPF_CALL_5(bpf_skb_event_output, struct sk_buff *, skb, struct bpf_map *, map,
2225 u64, flags, void *, meta, u64, meta_size)
Daniel Borkmann555c8a82016-07-14 18:08:05 +02002226{
Daniel Borkmann555c8a82016-07-14 18:08:05 +02002227 u64 skb_size = (flags & BPF_F_CTXLEN_MASK) >> 32;
Daniel Borkmann555c8a82016-07-14 18:08:05 +02002228
2229 if (unlikely(flags & ~(BPF_F_CTXLEN_MASK | BPF_F_INDEX_MASK)))
2230 return -EINVAL;
2231 if (unlikely(skb_size > skb->len))
2232 return -EFAULT;
2233
2234 return bpf_event_output(map, flags, meta, meta_size, skb, skb_size,
2235 bpf_skb_copy);
2236}
2237
2238static const struct bpf_func_proto bpf_skb_event_output_proto = {
2239 .func = bpf_skb_event_output,
2240 .gpl_only = true,
2241 .ret_type = RET_INTEGER,
2242 .arg1_type = ARG_PTR_TO_CTX,
2243 .arg2_type = ARG_CONST_MAP_PTR,
2244 .arg3_type = ARG_ANYTHING,
2245 .arg4_type = ARG_PTR_TO_STACK,
2246 .arg5_type = ARG_CONST_STACK_SIZE,
2247};
2248
Daniel Borkmannc6c33452016-01-11 01:16:39 +01002249static unsigned short bpf_tunnel_key_af(u64 flags)
2250{
2251 return flags & BPF_F_TUNINFO_IPV6 ? AF_INET6 : AF_INET;
2252}
2253
Daniel Borkmannf3694e02016-09-09 02:45:31 +02002254BPF_CALL_4(bpf_skb_get_tunnel_key, struct sk_buff *, skb, struct bpf_tunnel_key *, to,
2255 u32, size, u64, flags)
Alexei Starovoitovd3aa45c2015-07-30 15:36:57 -07002256{
Daniel Borkmannc6c33452016-01-11 01:16:39 +01002257 const struct ip_tunnel_info *info = skb_tunnel_info(skb);
2258 u8 compat[sizeof(struct bpf_tunnel_key)];
Daniel Borkmann074f5282016-04-13 00:10:52 +02002259 void *to_orig = to;
2260 int err;
Alexei Starovoitovd3aa45c2015-07-30 15:36:57 -07002261
Daniel Borkmann074f5282016-04-13 00:10:52 +02002262 if (unlikely(!info || (flags & ~(BPF_F_TUNINFO_IPV6)))) {
2263 err = -EINVAL;
2264 goto err_clear;
2265 }
2266 if (ip_tunnel_info_af(info) != bpf_tunnel_key_af(flags)) {
2267 err = -EPROTO;
2268 goto err_clear;
2269 }
Daniel Borkmannc6c33452016-01-11 01:16:39 +01002270 if (unlikely(size != sizeof(struct bpf_tunnel_key))) {
Daniel Borkmann074f5282016-04-13 00:10:52 +02002271 err = -EINVAL;
Daniel Borkmannc6c33452016-01-11 01:16:39 +01002272 switch (size) {
Daniel Borkmann4018ab12016-03-09 03:00:05 +01002273 case offsetof(struct bpf_tunnel_key, tunnel_label):
Daniel Borkmannc0e760c2016-03-30 00:02:00 +02002274 case offsetof(struct bpf_tunnel_key, tunnel_ext):
Daniel Borkmann4018ab12016-03-09 03:00:05 +01002275 goto set_compat;
Daniel Borkmannc6c33452016-01-11 01:16:39 +01002276 case offsetof(struct bpf_tunnel_key, remote_ipv6[1]):
2277 /* Fixup deprecated structure layouts here, so we have
2278 * a common path later on.
2279 */
2280 if (ip_tunnel_info_af(info) != AF_INET)
Daniel Borkmann074f5282016-04-13 00:10:52 +02002281 goto err_clear;
Daniel Borkmann4018ab12016-03-09 03:00:05 +01002282set_compat:
Daniel Borkmannc6c33452016-01-11 01:16:39 +01002283 to = (struct bpf_tunnel_key *)compat;
2284 break;
2285 default:
Daniel Borkmann074f5282016-04-13 00:10:52 +02002286 goto err_clear;
Daniel Borkmannc6c33452016-01-11 01:16:39 +01002287 }
2288 }
Alexei Starovoitovd3aa45c2015-07-30 15:36:57 -07002289
2290 to->tunnel_id = be64_to_cpu(info->key.tun_id);
Daniel Borkmannc6c33452016-01-11 01:16:39 +01002291 to->tunnel_tos = info->key.tos;
2292 to->tunnel_ttl = info->key.ttl;
2293
Daniel Borkmann4018ab12016-03-09 03:00:05 +01002294 if (flags & BPF_F_TUNINFO_IPV6) {
Daniel Borkmannc6c33452016-01-11 01:16:39 +01002295 memcpy(to->remote_ipv6, &info->key.u.ipv6.src,
2296 sizeof(to->remote_ipv6));
Daniel Borkmann4018ab12016-03-09 03:00:05 +01002297 to->tunnel_label = be32_to_cpu(info->key.label);
2298 } else {
Daniel Borkmannc6c33452016-01-11 01:16:39 +01002299 to->remote_ipv4 = be32_to_cpu(info->key.u.ipv4.src);
Daniel Borkmann4018ab12016-03-09 03:00:05 +01002300 }
Daniel Borkmannc6c33452016-01-11 01:16:39 +01002301
2302 if (unlikely(size != sizeof(struct bpf_tunnel_key)))
Daniel Borkmann074f5282016-04-13 00:10:52 +02002303 memcpy(to_orig, to, size);
Alexei Starovoitovd3aa45c2015-07-30 15:36:57 -07002304
2305 return 0;
Daniel Borkmann074f5282016-04-13 00:10:52 +02002306err_clear:
2307 memset(to_orig, 0, size);
2308 return err;
Alexei Starovoitovd3aa45c2015-07-30 15:36:57 -07002309}
2310
Daniel Borkmann577c50a2016-03-04 15:15:04 +01002311static const struct bpf_func_proto bpf_skb_get_tunnel_key_proto = {
Alexei Starovoitovd3aa45c2015-07-30 15:36:57 -07002312 .func = bpf_skb_get_tunnel_key,
2313 .gpl_only = false,
2314 .ret_type = RET_INTEGER,
2315 .arg1_type = ARG_PTR_TO_CTX,
Daniel Borkmann074f5282016-04-13 00:10:52 +02002316 .arg2_type = ARG_PTR_TO_RAW_STACK,
Alexei Starovoitovd3aa45c2015-07-30 15:36:57 -07002317 .arg3_type = ARG_CONST_STACK_SIZE,
2318 .arg4_type = ARG_ANYTHING,
2319};
2320
Daniel Borkmannf3694e02016-09-09 02:45:31 +02002321BPF_CALL_3(bpf_skb_get_tunnel_opt, struct sk_buff *, skb, u8 *, to, u32, size)
Daniel Borkmann14ca0752016-03-04 15:15:06 +01002322{
Daniel Borkmann14ca0752016-03-04 15:15:06 +01002323 const struct ip_tunnel_info *info = skb_tunnel_info(skb);
Daniel Borkmann074f5282016-04-13 00:10:52 +02002324 int err;
Daniel Borkmann14ca0752016-03-04 15:15:06 +01002325
2326 if (unlikely(!info ||
Daniel Borkmann074f5282016-04-13 00:10:52 +02002327 !(info->key.tun_flags & TUNNEL_OPTIONS_PRESENT))) {
2328 err = -ENOENT;
2329 goto err_clear;
2330 }
2331 if (unlikely(size < info->options_len)) {
2332 err = -ENOMEM;
2333 goto err_clear;
2334 }
Daniel Borkmann14ca0752016-03-04 15:15:06 +01002335
2336 ip_tunnel_info_opts_get(to, info);
Daniel Borkmann074f5282016-04-13 00:10:52 +02002337 if (size > info->options_len)
2338 memset(to + info->options_len, 0, size - info->options_len);
Daniel Borkmann14ca0752016-03-04 15:15:06 +01002339
2340 return info->options_len;
Daniel Borkmann074f5282016-04-13 00:10:52 +02002341err_clear:
2342 memset(to, 0, size);
2343 return err;
Daniel Borkmann14ca0752016-03-04 15:15:06 +01002344}
2345
2346static const struct bpf_func_proto bpf_skb_get_tunnel_opt_proto = {
2347 .func = bpf_skb_get_tunnel_opt,
2348 .gpl_only = false,
2349 .ret_type = RET_INTEGER,
2350 .arg1_type = ARG_PTR_TO_CTX,
Daniel Borkmann074f5282016-04-13 00:10:52 +02002351 .arg2_type = ARG_PTR_TO_RAW_STACK,
Daniel Borkmann14ca0752016-03-04 15:15:06 +01002352 .arg3_type = ARG_CONST_STACK_SIZE,
2353};
2354
Alexei Starovoitovd3aa45c2015-07-30 15:36:57 -07002355static struct metadata_dst __percpu *md_dst;
2356
Daniel Borkmannf3694e02016-09-09 02:45:31 +02002357BPF_CALL_4(bpf_skb_set_tunnel_key, struct sk_buff *, skb,
2358 const struct bpf_tunnel_key *, from, u32, size, u64, flags)
Alexei Starovoitovd3aa45c2015-07-30 15:36:57 -07002359{
Alexei Starovoitovd3aa45c2015-07-30 15:36:57 -07002360 struct metadata_dst *md = this_cpu_ptr(md_dst);
Daniel Borkmannc6c33452016-01-11 01:16:39 +01002361 u8 compat[sizeof(struct bpf_tunnel_key)];
Alexei Starovoitovd3aa45c2015-07-30 15:36:57 -07002362 struct ip_tunnel_info *info;
2363
Daniel Borkmann22080872016-03-04 15:15:05 +01002364 if (unlikely(flags & ~(BPF_F_TUNINFO_IPV6 | BPF_F_ZERO_CSUM_TX |
2365 BPF_F_DONT_FRAGMENT)))
Alexei Starovoitovd3aa45c2015-07-30 15:36:57 -07002366 return -EINVAL;
Daniel Borkmannc6c33452016-01-11 01:16:39 +01002367 if (unlikely(size != sizeof(struct bpf_tunnel_key))) {
2368 switch (size) {
Daniel Borkmann4018ab12016-03-09 03:00:05 +01002369 case offsetof(struct bpf_tunnel_key, tunnel_label):
Daniel Borkmannc0e760c2016-03-30 00:02:00 +02002370 case offsetof(struct bpf_tunnel_key, tunnel_ext):
Daniel Borkmannc6c33452016-01-11 01:16:39 +01002371 case offsetof(struct bpf_tunnel_key, remote_ipv6[1]):
2372 /* Fixup deprecated structure layouts here, so we have
2373 * a common path later on.
2374 */
2375 memcpy(compat, from, size);
2376 memset(compat + size, 0, sizeof(compat) - size);
Daniel Borkmannf3694e02016-09-09 02:45:31 +02002377 from = (const struct bpf_tunnel_key *) compat;
Daniel Borkmannc6c33452016-01-11 01:16:39 +01002378 break;
2379 default:
2380 return -EINVAL;
2381 }
2382 }
Daniel Borkmannc0e760c2016-03-30 00:02:00 +02002383 if (unlikely((!(flags & BPF_F_TUNINFO_IPV6) && from->tunnel_label) ||
2384 from->tunnel_ext))
Daniel Borkmann4018ab12016-03-09 03:00:05 +01002385 return -EINVAL;
Alexei Starovoitovd3aa45c2015-07-30 15:36:57 -07002386
2387 skb_dst_drop(skb);
2388 dst_hold((struct dst_entry *) md);
2389 skb_dst_set(skb, (struct dst_entry *) md);
2390
2391 info = &md->u.tun_info;
2392 info->mode = IP_TUNNEL_INFO_TX;
Daniel Borkmannc6c33452016-01-11 01:16:39 +01002393
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01002394 info->key.tun_flags = TUNNEL_KEY | TUNNEL_CSUM | TUNNEL_NOCACHE;
Daniel Borkmann22080872016-03-04 15:15:05 +01002395 if (flags & BPF_F_DONT_FRAGMENT)
2396 info->key.tun_flags |= TUNNEL_DONT_FRAGMENT;
2397
Alexei Starovoitovd3aa45c2015-07-30 15:36:57 -07002398 info->key.tun_id = cpu_to_be64(from->tunnel_id);
Daniel Borkmannc6c33452016-01-11 01:16:39 +01002399 info->key.tos = from->tunnel_tos;
2400 info->key.ttl = from->tunnel_ttl;
2401
2402 if (flags & BPF_F_TUNINFO_IPV6) {
2403 info->mode |= IP_TUNNEL_INFO_IPV6;
2404 memcpy(&info->key.u.ipv6.dst, from->remote_ipv6,
2405 sizeof(from->remote_ipv6));
Daniel Borkmann4018ab12016-03-09 03:00:05 +01002406 info->key.label = cpu_to_be32(from->tunnel_label) &
2407 IPV6_FLOWLABEL_MASK;
Daniel Borkmannc6c33452016-01-11 01:16:39 +01002408 } else {
2409 info->key.u.ipv4.dst = cpu_to_be32(from->remote_ipv4);
Daniel Borkmann2da897e2016-02-23 02:05:26 +01002410 if (flags & BPF_F_ZERO_CSUM_TX)
2411 info->key.tun_flags &= ~TUNNEL_CSUM;
Daniel Borkmannc6c33452016-01-11 01:16:39 +01002412 }
Alexei Starovoitovd3aa45c2015-07-30 15:36:57 -07002413
2414 return 0;
2415}
2416
Daniel Borkmann577c50a2016-03-04 15:15:04 +01002417static const struct bpf_func_proto bpf_skb_set_tunnel_key_proto = {
Alexei Starovoitovd3aa45c2015-07-30 15:36:57 -07002418 .func = bpf_skb_set_tunnel_key,
2419 .gpl_only = false,
2420 .ret_type = RET_INTEGER,
2421 .arg1_type = ARG_PTR_TO_CTX,
2422 .arg2_type = ARG_PTR_TO_STACK,
2423 .arg3_type = ARG_CONST_STACK_SIZE,
2424 .arg4_type = ARG_ANYTHING,
2425};
2426
Daniel Borkmannf3694e02016-09-09 02:45:31 +02002427BPF_CALL_3(bpf_skb_set_tunnel_opt, struct sk_buff *, skb,
2428 const u8 *, from, u32, size)
Daniel Borkmann14ca0752016-03-04 15:15:06 +01002429{
Daniel Borkmann14ca0752016-03-04 15:15:06 +01002430 struct ip_tunnel_info *info = skb_tunnel_info(skb);
2431 const struct metadata_dst *md = this_cpu_ptr(md_dst);
2432
2433 if (unlikely(info != &md->u.tun_info || (size & (sizeof(u32) - 1))))
2434 return -EINVAL;
Daniel Borkmannfca5fdf2016-03-16 01:42:51 +01002435 if (unlikely(size > IP_TUNNEL_OPTS_MAX))
Daniel Borkmann14ca0752016-03-04 15:15:06 +01002436 return -ENOMEM;
2437
2438 ip_tunnel_info_opts_set(info, from, size);
2439
2440 return 0;
2441}
2442
2443static const struct bpf_func_proto bpf_skb_set_tunnel_opt_proto = {
2444 .func = bpf_skb_set_tunnel_opt,
2445 .gpl_only = false,
2446 .ret_type = RET_INTEGER,
2447 .arg1_type = ARG_PTR_TO_CTX,
2448 .arg2_type = ARG_PTR_TO_STACK,
2449 .arg3_type = ARG_CONST_STACK_SIZE,
2450};
2451
2452static const struct bpf_func_proto *
2453bpf_get_skb_set_tunnel_proto(enum bpf_func_id which)
Alexei Starovoitovd3aa45c2015-07-30 15:36:57 -07002454{
2455 if (!md_dst) {
Daniel Borkmann14ca0752016-03-04 15:15:06 +01002456 /* Race is not possible, since it's called from verifier
2457 * that is holding verifier mutex.
Alexei Starovoitovd3aa45c2015-07-30 15:36:57 -07002458 */
Daniel Borkmannfca5fdf2016-03-16 01:42:51 +01002459 md_dst = metadata_dst_alloc_percpu(IP_TUNNEL_OPTS_MAX,
Daniel Borkmann14ca0752016-03-04 15:15:06 +01002460 GFP_KERNEL);
Alexei Starovoitovd3aa45c2015-07-30 15:36:57 -07002461 if (!md_dst)
2462 return NULL;
2463 }
Daniel Borkmann14ca0752016-03-04 15:15:06 +01002464
2465 switch (which) {
2466 case BPF_FUNC_skb_set_tunnel_key:
2467 return &bpf_skb_set_tunnel_key_proto;
2468 case BPF_FUNC_skb_set_tunnel_opt:
2469 return &bpf_skb_set_tunnel_opt_proto;
2470 default:
2471 return NULL;
2472 }
Alexei Starovoitovd3aa45c2015-07-30 15:36:57 -07002473}
2474
Daniel Borkmannf3694e02016-09-09 02:45:31 +02002475BPF_CALL_3(bpf_skb_under_cgroup, struct sk_buff *, skb, struct bpf_map *, map,
2476 u32, idx)
Martin KaFai Lau4a482f32016-06-30 10:28:44 -07002477{
Martin KaFai Lau4a482f32016-06-30 10:28:44 -07002478 struct bpf_array *array = container_of(map, struct bpf_array, map);
2479 struct cgroup *cgrp;
2480 struct sock *sk;
Martin KaFai Lau4a482f32016-06-30 10:28:44 -07002481
Daniel Borkmann2d48c5f2016-09-23 01:28:35 +02002482 sk = skb_to_full_sk(skb);
Martin KaFai Lau4a482f32016-06-30 10:28:44 -07002483 if (!sk || !sk_fullsock(sk))
2484 return -ENOENT;
Daniel Borkmannf3694e02016-09-09 02:45:31 +02002485 if (unlikely(idx >= array->map.max_entries))
Martin KaFai Lau4a482f32016-06-30 10:28:44 -07002486 return -E2BIG;
2487
Daniel Borkmannf3694e02016-09-09 02:45:31 +02002488 cgrp = READ_ONCE(array->ptrs[idx]);
Martin KaFai Lau4a482f32016-06-30 10:28:44 -07002489 if (unlikely(!cgrp))
2490 return -EAGAIN;
2491
Daniel Borkmann54fd9c22016-08-18 01:00:41 +02002492 return sk_under_cgroup_hierarchy(sk, cgrp);
Martin KaFai Lau4a482f32016-06-30 10:28:44 -07002493}
2494
Daniel Borkmann747ea552016-08-12 22:17:17 +02002495static const struct bpf_func_proto bpf_skb_under_cgroup_proto = {
2496 .func = bpf_skb_under_cgroup,
Martin KaFai Lau4a482f32016-06-30 10:28:44 -07002497 .gpl_only = false,
2498 .ret_type = RET_INTEGER,
2499 .arg1_type = ARG_PTR_TO_CTX,
2500 .arg2_type = ARG_CONST_MAP_PTR,
2501 .arg3_type = ARG_ANYTHING,
2502};
Martin KaFai Lau4a482f32016-06-30 10:28:44 -07002503
Daniel Borkmann4de16962016-08-18 01:00:40 +02002504static unsigned long bpf_xdp_copy(void *dst_buff, const void *src_buff,
2505 unsigned long off, unsigned long len)
2506{
2507 memcpy(dst_buff, src_buff + off, len);
2508 return 0;
2509}
2510
Daniel Borkmannf3694e02016-09-09 02:45:31 +02002511BPF_CALL_5(bpf_xdp_event_output, struct xdp_buff *, xdp, struct bpf_map *, map,
2512 u64, flags, void *, meta, u64, meta_size)
Daniel Borkmann4de16962016-08-18 01:00:40 +02002513{
Daniel Borkmann4de16962016-08-18 01:00:40 +02002514 u64 xdp_size = (flags & BPF_F_CTXLEN_MASK) >> 32;
Daniel Borkmann4de16962016-08-18 01:00:40 +02002515
2516 if (unlikely(flags & ~(BPF_F_CTXLEN_MASK | BPF_F_INDEX_MASK)))
2517 return -EINVAL;
2518 if (unlikely(xdp_size > (unsigned long)(xdp->data_end - xdp->data)))
2519 return -EFAULT;
2520
2521 return bpf_event_output(map, flags, meta, meta_size, xdp, xdp_size,
2522 bpf_xdp_copy);
2523}
2524
2525static const struct bpf_func_proto bpf_xdp_event_output_proto = {
2526 .func = bpf_xdp_event_output,
2527 .gpl_only = true,
2528 .ret_type = RET_INTEGER,
2529 .arg1_type = ARG_PTR_TO_CTX,
2530 .arg2_type = ARG_CONST_MAP_PTR,
2531 .arg3_type = ARG_ANYTHING,
2532 .arg4_type = ARG_PTR_TO_STACK,
2533 .arg5_type = ARG_CONST_STACK_SIZE,
2534};
2535
Daniel Borkmannd4052c42015-03-01 12:31:45 +01002536static const struct bpf_func_proto *
2537sk_filter_func_proto(enum bpf_func_id func_id)
Alexei Starovoitov89aa0752014-12-01 15:06:35 -08002538{
2539 switch (func_id) {
2540 case BPF_FUNC_map_lookup_elem:
2541 return &bpf_map_lookup_elem_proto;
2542 case BPF_FUNC_map_update_elem:
2543 return &bpf_map_update_elem_proto;
2544 case BPF_FUNC_map_delete_elem:
2545 return &bpf_map_delete_elem_proto;
Daniel Borkmann03e69b52015-03-14 02:27:16 +01002546 case BPF_FUNC_get_prandom_u32:
2547 return &bpf_get_prandom_u32_proto;
Daniel Borkmannc04167c2015-03-14 02:27:17 +01002548 case BPF_FUNC_get_smp_processor_id:
Daniel Borkmann80b48c42016-06-28 12:18:26 +02002549 return &bpf_get_raw_smp_processor_id_proto;
Alexei Starovoitov04fd61a2015-05-19 16:59:03 -07002550 case BPF_FUNC_tail_call:
2551 return &bpf_tail_call_proto;
Daniel Borkmann17ca8cb2015-05-29 23:23:06 +02002552 case BPF_FUNC_ktime_get_ns:
2553 return &bpf_ktime_get_ns_proto;
Alexei Starovoitov0756ea32015-06-12 19:39:13 -07002554 case BPF_FUNC_trace_printk:
Alexei Starovoitov1be7f752015-10-07 22:23:21 -07002555 if (capable(CAP_SYS_ADMIN))
2556 return bpf_get_trace_printk_proto();
Alexei Starovoitov89aa0752014-12-01 15:06:35 -08002557 default:
2558 return NULL;
2559 }
2560}
2561
Alexei Starovoitov608cd712015-03-26 19:53:57 -07002562static const struct bpf_func_proto *
2563tc_cls_act_func_proto(enum bpf_func_id func_id)
2564{
2565 switch (func_id) {
2566 case BPF_FUNC_skb_store_bytes:
2567 return &bpf_skb_store_bytes_proto;
Daniel Borkmann05c74e52015-12-17 23:51:53 +01002568 case BPF_FUNC_skb_load_bytes:
2569 return &bpf_skb_load_bytes_proto;
Daniel Borkmann36bbef52016-09-20 00:26:13 +02002570 case BPF_FUNC_skb_pull_data:
2571 return &bpf_skb_pull_data_proto;
Daniel Borkmann7d672342016-02-19 23:05:23 +01002572 case BPF_FUNC_csum_diff:
2573 return &bpf_csum_diff_proto;
Daniel Borkmann36bbef52016-09-20 00:26:13 +02002574 case BPF_FUNC_csum_update:
2575 return &bpf_csum_update_proto;
Alexei Starovoitov91bc48222015-04-01 17:12:13 -07002576 case BPF_FUNC_l3_csum_replace:
2577 return &bpf_l3_csum_replace_proto;
2578 case BPF_FUNC_l4_csum_replace:
2579 return &bpf_l4_csum_replace_proto;
Alexei Starovoitov3896d652015-06-02 16:03:14 -07002580 case BPF_FUNC_clone_redirect:
2581 return &bpf_clone_redirect_proto;
Daniel Borkmann8d20aab2015-07-15 14:21:42 +02002582 case BPF_FUNC_get_cgroup_classid:
2583 return &bpf_get_cgroup_classid_proto;
Alexei Starovoitov4e10df92015-07-20 20:34:18 -07002584 case BPF_FUNC_skb_vlan_push:
2585 return &bpf_skb_vlan_push_proto;
2586 case BPF_FUNC_skb_vlan_pop:
2587 return &bpf_skb_vlan_pop_proto;
Daniel Borkmann65781712016-06-28 12:18:27 +02002588 case BPF_FUNC_skb_change_proto:
2589 return &bpf_skb_change_proto_proto;
Daniel Borkmannd2485c42016-06-28 12:18:28 +02002590 case BPF_FUNC_skb_change_type:
2591 return &bpf_skb_change_type_proto;
Daniel Borkmann5293efe2016-08-18 01:00:39 +02002592 case BPF_FUNC_skb_change_tail:
2593 return &bpf_skb_change_tail_proto;
Alexei Starovoitovd3aa45c2015-07-30 15:36:57 -07002594 case BPF_FUNC_skb_get_tunnel_key:
2595 return &bpf_skb_get_tunnel_key_proto;
2596 case BPF_FUNC_skb_set_tunnel_key:
Daniel Borkmann14ca0752016-03-04 15:15:06 +01002597 return bpf_get_skb_set_tunnel_proto(func_id);
2598 case BPF_FUNC_skb_get_tunnel_opt:
2599 return &bpf_skb_get_tunnel_opt_proto;
2600 case BPF_FUNC_skb_set_tunnel_opt:
2601 return bpf_get_skb_set_tunnel_proto(func_id);
Alexei Starovoitov27b29f62015-09-15 23:05:43 -07002602 case BPF_FUNC_redirect:
2603 return &bpf_redirect_proto;
Daniel Borkmannc46646d2015-09-30 01:41:51 +02002604 case BPF_FUNC_get_route_realm:
2605 return &bpf_get_route_realm_proto;
Daniel Borkmann13c5c242016-07-03 01:28:47 +02002606 case BPF_FUNC_get_hash_recalc:
2607 return &bpf_get_hash_recalc_proto;
Daniel Borkmann7a4b28c2016-09-23 01:28:37 +02002608 case BPF_FUNC_set_hash_invalid:
2609 return &bpf_set_hash_invalid_proto;
Daniel Borkmannbd570ff2016-04-18 21:01:24 +02002610 case BPF_FUNC_perf_event_output:
Daniel Borkmann555c8a82016-07-14 18:08:05 +02002611 return &bpf_skb_event_output_proto;
Daniel Borkmann80b48c42016-06-28 12:18:26 +02002612 case BPF_FUNC_get_smp_processor_id:
2613 return &bpf_get_smp_processor_id_proto;
Daniel Borkmann747ea552016-08-12 22:17:17 +02002614 case BPF_FUNC_skb_under_cgroup:
2615 return &bpf_skb_under_cgroup_proto;
Alexei Starovoitov608cd712015-03-26 19:53:57 -07002616 default:
2617 return sk_filter_func_proto(func_id);
2618 }
2619}
2620
Brenden Blanco6a773a12016-07-19 12:16:47 -07002621static const struct bpf_func_proto *
2622xdp_func_proto(enum bpf_func_id func_id)
2623{
Daniel Borkmann4de16962016-08-18 01:00:40 +02002624 switch (func_id) {
2625 case BPF_FUNC_perf_event_output:
2626 return &bpf_xdp_event_output_proto;
Daniel Borkmann669dc4d2016-09-23 01:28:36 +02002627 case BPF_FUNC_get_smp_processor_id:
2628 return &bpf_get_smp_processor_id_proto;
Daniel Borkmann4de16962016-08-18 01:00:40 +02002629 default:
2630 return sk_filter_func_proto(func_id);
2631 }
Brenden Blanco6a773a12016-07-19 12:16:47 -07002632}
2633
Alexei Starovoitovd691f9e2015-06-04 10:11:54 -07002634static bool __is_valid_access(int off, int size, enum bpf_access_type type)
Alexei Starovoitov89aa0752014-12-01 15:06:35 -08002635{
Alexei Starovoitov9bac3d62015-03-13 11:57:42 -07002636 if (off < 0 || off >= sizeof(struct __sk_buff))
2637 return false;
Daniel Borkmann4936e352016-05-13 19:08:26 +02002638 /* The verifier guarantees that size > 0. */
Alexei Starovoitov9bac3d62015-03-13 11:57:42 -07002639 if (off % size != 0)
2640 return false;
Daniel Borkmann4936e352016-05-13 19:08:26 +02002641 if (size != sizeof(__u32))
Alexei Starovoitov9bac3d62015-03-13 11:57:42 -07002642 return false;
2643
2644 return true;
2645}
2646
Alexei Starovoitovd691f9e2015-06-04 10:11:54 -07002647static bool sk_filter_is_valid_access(int off, int size,
Alexei Starovoitov19de99f2016-06-15 18:25:38 -07002648 enum bpf_access_type type,
2649 enum bpf_reg_type *reg_type)
Alexei Starovoitovd691f9e2015-06-04 10:11:54 -07002650{
Alexei Starovoitovdb58ba42016-05-05 19:49:12 -07002651 switch (off) {
2652 case offsetof(struct __sk_buff, tc_classid):
2653 case offsetof(struct __sk_buff, data):
2654 case offsetof(struct __sk_buff, data_end):
Daniel Borkmann045efa82015-09-15 23:05:42 -07002655 return false;
Alexei Starovoitovdb58ba42016-05-05 19:49:12 -07002656 }
Daniel Borkmann045efa82015-09-15 23:05:42 -07002657
Alexei Starovoitovd691f9e2015-06-04 10:11:54 -07002658 if (type == BPF_WRITE) {
2659 switch (off) {
2660 case offsetof(struct __sk_buff, cb[0]) ...
Daniel Borkmann4936e352016-05-13 19:08:26 +02002661 offsetof(struct __sk_buff, cb[4]):
Alexei Starovoitovd691f9e2015-06-04 10:11:54 -07002662 break;
2663 default:
2664 return false;
2665 }
2666 }
2667
2668 return __is_valid_access(off, size, type);
2669}
2670
Daniel Borkmann36bbef52016-09-20 00:26:13 +02002671static int tc_cls_act_prologue(struct bpf_insn *insn_buf, bool direct_write,
2672 const struct bpf_prog *prog)
2673{
2674 struct bpf_insn *insn = insn_buf;
2675
2676 if (!direct_write)
2677 return 0;
2678
2679 /* if (!skb->cloned)
2680 * goto start;
2681 *
2682 * (Fast-path, otherwise approximation that we might be
2683 * a clone, do the rest in helper.)
2684 */
2685 *insn++ = BPF_LDX_MEM(BPF_B, BPF_REG_6, BPF_REG_1, CLONED_OFFSET());
2686 *insn++ = BPF_ALU32_IMM(BPF_AND, BPF_REG_6, CLONED_MASK);
2687 *insn++ = BPF_JMP_IMM(BPF_JEQ, BPF_REG_6, 0, 7);
2688
2689 /* ret = bpf_skb_pull_data(skb, 0); */
2690 *insn++ = BPF_MOV64_REG(BPF_REG_6, BPF_REG_1);
2691 *insn++ = BPF_ALU64_REG(BPF_XOR, BPF_REG_2, BPF_REG_2);
2692 *insn++ = BPF_RAW_INSN(BPF_JMP | BPF_CALL, 0, 0, 0,
2693 BPF_FUNC_skb_pull_data);
2694 /* if (!ret)
2695 * goto restore;
2696 * return TC_ACT_SHOT;
2697 */
2698 *insn++ = BPF_JMP_IMM(BPF_JEQ, BPF_REG_0, 0, 2);
2699 *insn++ = BPF_ALU32_IMM(BPF_MOV, BPF_REG_0, TC_ACT_SHOT);
2700 *insn++ = BPF_EXIT_INSN();
2701
2702 /* restore: */
2703 *insn++ = BPF_MOV64_REG(BPF_REG_1, BPF_REG_6);
2704 /* start: */
2705 *insn++ = prog->insnsi[0];
2706
2707 return insn - insn_buf;
2708}
2709
Alexei Starovoitovd691f9e2015-06-04 10:11:54 -07002710static bool tc_cls_act_is_valid_access(int off, int size,
Alexei Starovoitov19de99f2016-06-15 18:25:38 -07002711 enum bpf_access_type type,
2712 enum bpf_reg_type *reg_type)
Alexei Starovoitovd691f9e2015-06-04 10:11:54 -07002713{
2714 if (type == BPF_WRITE) {
2715 switch (off) {
2716 case offsetof(struct __sk_buff, mark):
2717 case offsetof(struct __sk_buff, tc_index):
Daniel Borkmann754f1e62015-09-30 01:41:52 +02002718 case offsetof(struct __sk_buff, priority):
Alexei Starovoitovd691f9e2015-06-04 10:11:54 -07002719 case offsetof(struct __sk_buff, cb[0]) ...
Daniel Borkmann09c37a22016-03-16 01:42:49 +01002720 offsetof(struct __sk_buff, cb[4]):
2721 case offsetof(struct __sk_buff, tc_classid):
Alexei Starovoitovd691f9e2015-06-04 10:11:54 -07002722 break;
2723 default:
2724 return false;
2725 }
2726 }
Alexei Starovoitov19de99f2016-06-15 18:25:38 -07002727
2728 switch (off) {
2729 case offsetof(struct __sk_buff, data):
2730 *reg_type = PTR_TO_PACKET;
2731 break;
2732 case offsetof(struct __sk_buff, data_end):
2733 *reg_type = PTR_TO_PACKET_END;
2734 break;
2735 }
2736
Alexei Starovoitovd691f9e2015-06-04 10:11:54 -07002737 return __is_valid_access(off, size, type);
2738}
2739
Brenden Blanco6a773a12016-07-19 12:16:47 -07002740static bool __is_valid_xdp_access(int off, int size,
2741 enum bpf_access_type type)
2742{
2743 if (off < 0 || off >= sizeof(struct xdp_md))
2744 return false;
2745 if (off % size != 0)
2746 return false;
Daniel Borkmann6088b582016-09-09 02:45:28 +02002747 if (size != sizeof(__u32))
Brenden Blanco6a773a12016-07-19 12:16:47 -07002748 return false;
2749
2750 return true;
2751}
2752
2753static bool xdp_is_valid_access(int off, int size,
2754 enum bpf_access_type type,
2755 enum bpf_reg_type *reg_type)
2756{
2757 if (type == BPF_WRITE)
2758 return false;
2759
2760 switch (off) {
2761 case offsetof(struct xdp_md, data):
2762 *reg_type = PTR_TO_PACKET;
2763 break;
2764 case offsetof(struct xdp_md, data_end):
2765 *reg_type = PTR_TO_PACKET_END;
2766 break;
2767 }
2768
2769 return __is_valid_xdp_access(off, size, type);
2770}
2771
2772void bpf_warn_invalid_xdp_action(u32 act)
2773{
2774 WARN_ONCE(1, "Illegal XDP return value %u, expect packet loss\n", act);
2775}
2776EXPORT_SYMBOL_GPL(bpf_warn_invalid_xdp_action);
2777
Daniel Borkmann374fb542016-09-09 02:45:30 +02002778static u32 sk_filter_convert_ctx_access(enum bpf_access_type type, int dst_reg,
2779 int src_reg, int ctx_off,
2780 struct bpf_insn *insn_buf,
2781 struct bpf_prog *prog)
Alexei Starovoitov9bac3d62015-03-13 11:57:42 -07002782{
2783 struct bpf_insn *insn = insn_buf;
2784
2785 switch (ctx_off) {
2786 case offsetof(struct __sk_buff, len):
2787 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, len) != 4);
2788
2789 *insn++ = BPF_LDX_MEM(BPF_W, dst_reg, src_reg,
2790 offsetof(struct sk_buff, len));
2791 break;
2792
Daniel Borkmann0b8c7072015-03-19 19:38:27 +01002793 case offsetof(struct __sk_buff, protocol):
2794 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, protocol) != 2);
2795
2796 *insn++ = BPF_LDX_MEM(BPF_H, dst_reg, src_reg,
2797 offsetof(struct sk_buff, protocol));
2798 break;
2799
Michal Sekletar27cd5452015-03-24 14:48:41 +01002800 case offsetof(struct __sk_buff, vlan_proto):
2801 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, vlan_proto) != 2);
2802
2803 *insn++ = BPF_LDX_MEM(BPF_H, dst_reg, src_reg,
2804 offsetof(struct sk_buff, vlan_proto));
2805 break;
2806
Daniel Borkmannbcad5712015-04-03 20:52:24 +02002807 case offsetof(struct __sk_buff, priority):
2808 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, priority) != 4);
2809
Daniel Borkmann754f1e62015-09-30 01:41:52 +02002810 if (type == BPF_WRITE)
2811 *insn++ = BPF_STX_MEM(BPF_W, dst_reg, src_reg,
2812 offsetof(struct sk_buff, priority));
2813 else
2814 *insn++ = BPF_LDX_MEM(BPF_W, dst_reg, src_reg,
2815 offsetof(struct sk_buff, priority));
Daniel Borkmannbcad5712015-04-03 20:52:24 +02002816 break;
2817
Alexei Starovoitov37e82c22015-05-27 15:30:39 -07002818 case offsetof(struct __sk_buff, ingress_ifindex):
2819 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, skb_iif) != 4);
2820
2821 *insn++ = BPF_LDX_MEM(BPF_W, dst_reg, src_reg,
2822 offsetof(struct sk_buff, skb_iif));
2823 break;
2824
2825 case offsetof(struct __sk_buff, ifindex):
2826 BUILD_BUG_ON(FIELD_SIZEOF(struct net_device, ifindex) != 4);
2827
Daniel Borkmannf035a512016-09-09 02:45:29 +02002828 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct sk_buff, dev),
Alexei Starovoitov37e82c22015-05-27 15:30:39 -07002829 dst_reg, src_reg,
2830 offsetof(struct sk_buff, dev));
2831 *insn++ = BPF_JMP_IMM(BPF_JEQ, dst_reg, 0, 1);
2832 *insn++ = BPF_LDX_MEM(BPF_W, dst_reg, dst_reg,
2833 offsetof(struct net_device, ifindex));
2834 break;
2835
Daniel Borkmannba7591d2015-08-01 00:46:29 +02002836 case offsetof(struct __sk_buff, hash):
2837 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, hash) != 4);
2838
2839 *insn++ = BPF_LDX_MEM(BPF_W, dst_reg, src_reg,
2840 offsetof(struct sk_buff, hash));
2841 break;
2842
Alexei Starovoitov9bac3d62015-03-13 11:57:42 -07002843 case offsetof(struct __sk_buff, mark):
Alexei Starovoitovd691f9e2015-06-04 10:11:54 -07002844 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, mark) != 4);
2845
2846 if (type == BPF_WRITE)
2847 *insn++ = BPF_STX_MEM(BPF_W, dst_reg, src_reg,
2848 offsetof(struct sk_buff, mark));
2849 else
2850 *insn++ = BPF_LDX_MEM(BPF_W, dst_reg, src_reg,
2851 offsetof(struct sk_buff, mark));
2852 break;
Alexei Starovoitov9bac3d62015-03-13 11:57:42 -07002853
2854 case offsetof(struct __sk_buff, pkt_type):
2855 return convert_skb_access(SKF_AD_PKTTYPE, dst_reg, src_reg, insn);
2856
2857 case offsetof(struct __sk_buff, queue_mapping):
2858 return convert_skb_access(SKF_AD_QUEUE, dst_reg, src_reg, insn);
Alexei Starovoitovc2497392015-03-16 18:06:02 -07002859
Alexei Starovoitovc2497392015-03-16 18:06:02 -07002860 case offsetof(struct __sk_buff, vlan_present):
2861 return convert_skb_access(SKF_AD_VLAN_TAG_PRESENT,
2862 dst_reg, src_reg, insn);
2863
2864 case offsetof(struct __sk_buff, vlan_tci):
2865 return convert_skb_access(SKF_AD_VLAN_TAG,
2866 dst_reg, src_reg, insn);
Alexei Starovoitovd691f9e2015-06-04 10:11:54 -07002867
2868 case offsetof(struct __sk_buff, cb[0]) ...
Daniel Borkmann6088b582016-09-09 02:45:28 +02002869 offsetof(struct __sk_buff, cb[4]):
Alexei Starovoitovd691f9e2015-06-04 10:11:54 -07002870 BUILD_BUG_ON(FIELD_SIZEOF(struct qdisc_skb_cb, data) < 20);
2871
Alexei Starovoitovff936a02015-10-07 10:55:41 -07002872 prog->cb_access = 1;
Alexei Starovoitovd691f9e2015-06-04 10:11:54 -07002873 ctx_off -= offsetof(struct __sk_buff, cb[0]);
2874 ctx_off += offsetof(struct sk_buff, cb);
2875 ctx_off += offsetof(struct qdisc_skb_cb, data);
2876 if (type == BPF_WRITE)
2877 *insn++ = BPF_STX_MEM(BPF_W, dst_reg, src_reg, ctx_off);
2878 else
2879 *insn++ = BPF_LDX_MEM(BPF_W, dst_reg, src_reg, ctx_off);
2880 break;
2881
Daniel Borkmann045efa82015-09-15 23:05:42 -07002882 case offsetof(struct __sk_buff, tc_classid):
2883 ctx_off -= offsetof(struct __sk_buff, tc_classid);
2884 ctx_off += offsetof(struct sk_buff, cb);
2885 ctx_off += offsetof(struct qdisc_skb_cb, tc_classid);
Daniel Borkmann09c37a22016-03-16 01:42:49 +01002886 if (type == BPF_WRITE)
2887 *insn++ = BPF_STX_MEM(BPF_H, dst_reg, src_reg, ctx_off);
2888 else
2889 *insn++ = BPF_LDX_MEM(BPF_H, dst_reg, src_reg, ctx_off);
Daniel Borkmann045efa82015-09-15 23:05:42 -07002890 break;
2891
Alexei Starovoitovdb58ba42016-05-05 19:49:12 -07002892 case offsetof(struct __sk_buff, data):
Daniel Borkmannf035a512016-09-09 02:45:29 +02002893 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct sk_buff, data),
Alexei Starovoitovdb58ba42016-05-05 19:49:12 -07002894 dst_reg, src_reg,
2895 offsetof(struct sk_buff, data));
2896 break;
2897
2898 case offsetof(struct __sk_buff, data_end):
2899 ctx_off -= offsetof(struct __sk_buff, data_end);
2900 ctx_off += offsetof(struct sk_buff, cb);
2901 ctx_off += offsetof(struct bpf_skb_data_end, data_end);
Daniel Borkmannf035a512016-09-09 02:45:29 +02002902 *insn++ = BPF_LDX_MEM(BPF_SIZEOF(void *), dst_reg, src_reg,
2903 ctx_off);
Alexei Starovoitovdb58ba42016-05-05 19:49:12 -07002904 break;
2905
Alexei Starovoitovd691f9e2015-06-04 10:11:54 -07002906 case offsetof(struct __sk_buff, tc_index):
2907#ifdef CONFIG_NET_SCHED
2908 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, tc_index) != 2);
2909
2910 if (type == BPF_WRITE)
2911 *insn++ = BPF_STX_MEM(BPF_H, dst_reg, src_reg,
2912 offsetof(struct sk_buff, tc_index));
2913 else
2914 *insn++ = BPF_LDX_MEM(BPF_H, dst_reg, src_reg,
2915 offsetof(struct sk_buff, tc_index));
2916 break;
2917#else
2918 if (type == BPF_WRITE)
2919 *insn++ = BPF_MOV64_REG(dst_reg, dst_reg);
2920 else
2921 *insn++ = BPF_MOV64_IMM(dst_reg, 0);
2922 break;
2923#endif
Alexei Starovoitov9bac3d62015-03-13 11:57:42 -07002924 }
2925
2926 return insn - insn_buf;
Alexei Starovoitov89aa0752014-12-01 15:06:35 -08002927}
2928
Daniel Borkmann374fb542016-09-09 02:45:30 +02002929static u32 tc_cls_act_convert_ctx_access(enum bpf_access_type type, int dst_reg,
2930 int src_reg, int ctx_off,
2931 struct bpf_insn *insn_buf,
2932 struct bpf_prog *prog)
2933{
2934 struct bpf_insn *insn = insn_buf;
2935
2936 switch (ctx_off) {
2937 case offsetof(struct __sk_buff, ifindex):
2938 BUILD_BUG_ON(FIELD_SIZEOF(struct net_device, ifindex) != 4);
2939
2940 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct sk_buff, dev),
2941 dst_reg, src_reg,
2942 offsetof(struct sk_buff, dev));
2943 *insn++ = BPF_LDX_MEM(BPF_W, dst_reg, dst_reg,
2944 offsetof(struct net_device, ifindex));
2945 break;
2946 default:
2947 return sk_filter_convert_ctx_access(type, dst_reg, src_reg,
2948 ctx_off, insn_buf, prog);
2949 }
2950
2951 return insn - insn_buf;
2952}
2953
Brenden Blanco6a773a12016-07-19 12:16:47 -07002954static u32 xdp_convert_ctx_access(enum bpf_access_type type, int dst_reg,
2955 int src_reg, int ctx_off,
2956 struct bpf_insn *insn_buf,
2957 struct bpf_prog *prog)
2958{
2959 struct bpf_insn *insn = insn_buf;
2960
2961 switch (ctx_off) {
2962 case offsetof(struct xdp_md, data):
Daniel Borkmannf035a512016-09-09 02:45:29 +02002963 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct xdp_buff, data),
Brenden Blanco6a773a12016-07-19 12:16:47 -07002964 dst_reg, src_reg,
2965 offsetof(struct xdp_buff, data));
2966 break;
2967 case offsetof(struct xdp_md, data_end):
Daniel Borkmannf035a512016-09-09 02:45:29 +02002968 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct xdp_buff, data_end),
Brenden Blanco6a773a12016-07-19 12:16:47 -07002969 dst_reg, src_reg,
2970 offsetof(struct xdp_buff, data_end));
2971 break;
2972 }
2973
2974 return insn - insn_buf;
2975}
2976
Daniel Borkmannd4052c42015-03-01 12:31:45 +01002977static const struct bpf_verifier_ops sk_filter_ops = {
Daniel Borkmann4936e352016-05-13 19:08:26 +02002978 .get_func_proto = sk_filter_func_proto,
2979 .is_valid_access = sk_filter_is_valid_access,
Daniel Borkmann374fb542016-09-09 02:45:30 +02002980 .convert_ctx_access = sk_filter_convert_ctx_access,
Alexei Starovoitov89aa0752014-12-01 15:06:35 -08002981};
2982
Alexei Starovoitov608cd712015-03-26 19:53:57 -07002983static const struct bpf_verifier_ops tc_cls_act_ops = {
Daniel Borkmann4936e352016-05-13 19:08:26 +02002984 .get_func_proto = tc_cls_act_func_proto,
2985 .is_valid_access = tc_cls_act_is_valid_access,
Daniel Borkmann374fb542016-09-09 02:45:30 +02002986 .convert_ctx_access = tc_cls_act_convert_ctx_access,
Daniel Borkmann36bbef52016-09-20 00:26:13 +02002987 .gen_prologue = tc_cls_act_prologue,
Alexei Starovoitov608cd712015-03-26 19:53:57 -07002988};
2989
Brenden Blanco6a773a12016-07-19 12:16:47 -07002990static const struct bpf_verifier_ops xdp_ops = {
2991 .get_func_proto = xdp_func_proto,
2992 .is_valid_access = xdp_is_valid_access,
2993 .convert_ctx_access = xdp_convert_ctx_access,
2994};
2995
Daniel Borkmannd4052c42015-03-01 12:31:45 +01002996static struct bpf_prog_type_list sk_filter_type __read_mostly = {
Daniel Borkmann4936e352016-05-13 19:08:26 +02002997 .ops = &sk_filter_ops,
2998 .type = BPF_PROG_TYPE_SOCKET_FILTER,
Alexei Starovoitov89aa0752014-12-01 15:06:35 -08002999};
3000
Daniel Borkmann96be4322015-03-01 12:31:46 +01003001static struct bpf_prog_type_list sched_cls_type __read_mostly = {
Daniel Borkmann4936e352016-05-13 19:08:26 +02003002 .ops = &tc_cls_act_ops,
3003 .type = BPF_PROG_TYPE_SCHED_CLS,
Daniel Borkmann96be4322015-03-01 12:31:46 +01003004};
3005
Daniel Borkmann94caee82015-03-20 15:11:11 +01003006static struct bpf_prog_type_list sched_act_type __read_mostly = {
Daniel Borkmann4936e352016-05-13 19:08:26 +02003007 .ops = &tc_cls_act_ops,
3008 .type = BPF_PROG_TYPE_SCHED_ACT,
Daniel Borkmann94caee82015-03-20 15:11:11 +01003009};
3010
Brenden Blanco6a773a12016-07-19 12:16:47 -07003011static struct bpf_prog_type_list xdp_type __read_mostly = {
3012 .ops = &xdp_ops,
3013 .type = BPF_PROG_TYPE_XDP,
3014};
3015
Daniel Borkmannd4052c42015-03-01 12:31:45 +01003016static int __init register_sk_filter_ops(void)
Alexei Starovoitov89aa0752014-12-01 15:06:35 -08003017{
Daniel Borkmannd4052c42015-03-01 12:31:45 +01003018 bpf_register_prog_type(&sk_filter_type);
Daniel Borkmann96be4322015-03-01 12:31:46 +01003019 bpf_register_prog_type(&sched_cls_type);
Daniel Borkmann94caee82015-03-20 15:11:11 +01003020 bpf_register_prog_type(&sched_act_type);
Brenden Blanco6a773a12016-07-19 12:16:47 -07003021 bpf_register_prog_type(&xdp_type);
Daniel Borkmann96be4322015-03-01 12:31:46 +01003022
Alexei Starovoitov89aa0752014-12-01 15:06:35 -08003023 return 0;
3024}
Daniel Borkmannd4052c42015-03-01 12:31:45 +01003025late_initcall(register_sk_filter_ops);
3026
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +02003027int sk_detach_filter(struct sock *sk)
Pavel Emelyanov55b33322007-10-17 21:21:26 -07003028{
3029 int ret = -ENOENT;
3030 struct sk_filter *filter;
3031
Vincent Bernatd59577b2013-01-16 22:55:49 +01003032 if (sock_flag(sk, SOCK_FILTER_LOCKED))
3033 return -EPERM;
3034
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +02003035 filter = rcu_dereference_protected(sk->sk_filter,
3036 lockdep_sock_is_held(sk));
Pavel Emelyanov55b33322007-10-17 21:21:26 -07003037 if (filter) {
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003038 RCU_INIT_POINTER(sk->sk_filter, NULL);
Eric Dumazet46bcf142010-12-06 09:29:43 -08003039 sk_filter_uncharge(sk, filter);
Pavel Emelyanov55b33322007-10-17 21:21:26 -07003040 ret = 0;
3041 }
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01003042
Pavel Emelyanov55b33322007-10-17 21:21:26 -07003043 return ret;
3044}
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +02003045EXPORT_SYMBOL_GPL(sk_detach_filter);
Pavel Emelyanova8fc9272012-11-01 02:01:48 +00003046
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01003047int sk_get_filter(struct sock *sk, struct sock_filter __user *ubuf,
3048 unsigned int len)
Pavel Emelyanova8fc9272012-11-01 02:01:48 +00003049{
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01003050 struct sock_fprog_kern *fprog;
Pavel Emelyanova8fc9272012-11-01 02:01:48 +00003051 struct sk_filter *filter;
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01003052 int ret = 0;
Pavel Emelyanova8fc9272012-11-01 02:01:48 +00003053
3054 lock_sock(sk);
3055 filter = rcu_dereference_protected(sk->sk_filter,
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +02003056 lockdep_sock_is_held(sk));
Pavel Emelyanova8fc9272012-11-01 02:01:48 +00003057 if (!filter)
3058 goto out;
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01003059
3060 /* We're copying the filter that has been originally attached,
Daniel Borkmann93d08b62015-10-02 12:06:03 +02003061 * so no conversion/decode needed anymore. eBPF programs that
3062 * have no original program cannot be dumped through this.
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01003063 */
Daniel Borkmann93d08b62015-10-02 12:06:03 +02003064 ret = -EACCES;
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07003065 fprog = filter->prog->orig_prog;
Daniel Borkmann93d08b62015-10-02 12:06:03 +02003066 if (!fprog)
3067 goto out;
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01003068
3069 ret = fprog->len;
Pavel Emelyanova8fc9272012-11-01 02:01:48 +00003070 if (!len)
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01003071 /* User space only enquires number of filter blocks. */
Pavel Emelyanova8fc9272012-11-01 02:01:48 +00003072 goto out;
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01003073
Pavel Emelyanova8fc9272012-11-01 02:01:48 +00003074 ret = -EINVAL;
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01003075 if (len < fprog->len)
Pavel Emelyanova8fc9272012-11-01 02:01:48 +00003076 goto out;
3077
3078 ret = -EFAULT;
Alexei Starovoitov009937e2014-07-30 20:34:13 -07003079 if (copy_to_user(ubuf, fprog->filter, bpf_classic_proglen(fprog)))
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01003080 goto out;
Pavel Emelyanova8fc9272012-11-01 02:01:48 +00003081
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01003082 /* Instead of bytes, the API requests to return the number
3083 * of filter blocks.
3084 */
3085 ret = fprog->len;
Pavel Emelyanova8fc9272012-11-01 02:01:48 +00003086out:
3087 release_sock(sk);
3088 return ret;
3089}