]> asedeno.scripts.mit.edu Git - linux.git/blob - net/core/filter.c
3d9ba7e5965adc4658b379a0cf55ff2f22f4b94d
[linux.git] / net / core / filter.c
1 /*
2  * Linux Socket Filter - Kernel level socket filtering
3  *
4  * Based on the design of the Berkeley Packet Filter. The new
5  * internal format has been designed by PLUMgrid:
6  *
7  *      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>
14  *
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.
21  * Kris Katterjohn - Added many additional checks in bpf_check_classic()
22  */
23
24 #include <linux/module.h>
25 #include <linux/types.h>
26 #include <linux/mm.h>
27 #include <linux/fcntl.h>
28 #include <linux/socket.h>
29 #include <linux/sock_diag.h>
30 #include <linux/in.h>
31 #include <linux/inet.h>
32 #include <linux/netdevice.h>
33 #include <linux/if_packet.h>
34 #include <linux/if_arp.h>
35 #include <linux/gfp.h>
36 #include <net/inet_common.h>
37 #include <net/ip.h>
38 #include <net/protocol.h>
39 #include <net/netlink.h>
40 #include <linux/skbuff.h>
41 #include <net/sock.h>
42 #include <net/flow_dissector.h>
43 #include <linux/errno.h>
44 #include <linux/timer.h>
45 #include <linux/uaccess.h>
46 #include <asm/unaligned.h>
47 #include <asm/cmpxchg.h>
48 #include <linux/filter.h>
49 #include <linux/ratelimit.h>
50 #include <linux/seccomp.h>
51 #include <linux/if_vlan.h>
52 #include <linux/bpf.h>
53 #include <net/sch_generic.h>
54 #include <net/cls_cgroup.h>
55 #include <net/dst_metadata.h>
56 #include <net/dst.h>
57 #include <net/sock_reuseport.h>
58 #include <net/busy_poll.h>
59 #include <net/tcp.h>
60 #include <net/xfrm.h>
61 #include <linux/bpf_trace.h>
62 #include <net/xdp_sock.h>
63 #include <linux/inetdevice.h>
64 #include <net/ip_fib.h>
65 #include <net/flow.h>
66 #include <net/arp.h>
67 #include <net/ipv6.h>
68 #include <linux/seg6_local.h>
69 #include <net/seg6.h>
70 #include <net/seg6_local.h>
71
72 /**
73  *      sk_filter_trim_cap - run a packet through a socket filter
74  *      @sk: sock associated with &sk_buff
75  *      @skb: buffer to filter
76  *      @cap: limit on how short the eBPF program may trim the packet
77  *
78  * Run the eBPF program and then cut skb->data to correct size returned by
79  * the program. If pkt_len is 0 we toss packet. If skb->len is smaller
80  * than pkt_len we keep whole skb->data. This is the socket level
81  * wrapper to BPF_PROG_RUN. It returns 0 if the packet should
82  * be accepted or -EPERM if the packet should be tossed.
83  *
84  */
85 int sk_filter_trim_cap(struct sock *sk, struct sk_buff *skb, unsigned int cap)
86 {
87         int err;
88         struct sk_filter *filter;
89
90         /*
91          * If the skb was allocated from pfmemalloc reserves, only
92          * allow SOCK_MEMALLOC sockets to use it as this socket is
93          * helping free memory
94          */
95         if (skb_pfmemalloc(skb) && !sock_flag(sk, SOCK_MEMALLOC)) {
96                 NET_INC_STATS(sock_net(sk), LINUX_MIB_PFMEMALLOCDROP);
97                 return -ENOMEM;
98         }
99         err = BPF_CGROUP_RUN_PROG_INET_INGRESS(sk, skb);
100         if (err)
101                 return err;
102
103         err = security_sock_rcv_skb(sk, skb);
104         if (err)
105                 return err;
106
107         rcu_read_lock();
108         filter = rcu_dereference(sk->sk_filter);
109         if (filter) {
110                 struct sock *save_sk = skb->sk;
111                 unsigned int pkt_len;
112
113                 skb->sk = sk;
114                 pkt_len = bpf_prog_run_save_cb(filter->prog, skb);
115                 skb->sk = save_sk;
116                 err = pkt_len ? pskb_trim(skb, max(cap, pkt_len)) : -EPERM;
117         }
118         rcu_read_unlock();
119
120         return err;
121 }
122 EXPORT_SYMBOL(sk_filter_trim_cap);
123
124 BPF_CALL_1(bpf_skb_get_pay_offset, struct sk_buff *, skb)
125 {
126         return skb_get_poff(skb);
127 }
128
129 BPF_CALL_3(bpf_skb_get_nlattr, struct sk_buff *, skb, u32, a, u32, x)
130 {
131         struct nlattr *nla;
132
133         if (skb_is_nonlinear(skb))
134                 return 0;
135
136         if (skb->len < sizeof(struct nlattr))
137                 return 0;
138
139         if (a > skb->len - sizeof(struct nlattr))
140                 return 0;
141
142         nla = nla_find((struct nlattr *) &skb->data[a], skb->len - a, x);
143         if (nla)
144                 return (void *) nla - (void *) skb->data;
145
146         return 0;
147 }
148
149 BPF_CALL_3(bpf_skb_get_nlattr_nest, struct sk_buff *, skb, u32, a, u32, x)
150 {
151         struct nlattr *nla;
152
153         if (skb_is_nonlinear(skb))
154                 return 0;
155
156         if (skb->len < sizeof(struct nlattr))
157                 return 0;
158
159         if (a > skb->len - sizeof(struct nlattr))
160                 return 0;
161
162         nla = (struct nlattr *) &skb->data[a];
163         if (nla->nla_len > skb->len - a)
164                 return 0;
165
166         nla = nla_find_nested(nla, x);
167         if (nla)
168                 return (void *) nla - (void *) skb->data;
169
170         return 0;
171 }
172
173 BPF_CALL_4(bpf_skb_load_helper_8, const struct sk_buff *, skb, const void *,
174            data, int, headlen, int, offset)
175 {
176         u8 tmp, *ptr;
177         const int len = sizeof(tmp);
178
179         if (offset >= 0) {
180                 if (headlen - offset >= len)
181                         return *(u8 *)(data + offset);
182                 if (!skb_copy_bits(skb, offset, &tmp, sizeof(tmp)))
183                         return tmp;
184         } else {
185                 ptr = bpf_internal_load_pointer_neg_helper(skb, offset, len);
186                 if (likely(ptr))
187                         return *(u8 *)ptr;
188         }
189
190         return -EFAULT;
191 }
192
193 BPF_CALL_2(bpf_skb_load_helper_8_no_cache, const struct sk_buff *, skb,
194            int, offset)
195 {
196         return ____bpf_skb_load_helper_8(skb, skb->data, skb->len - skb->data_len,
197                                          offset);
198 }
199
200 BPF_CALL_4(bpf_skb_load_helper_16, const struct sk_buff *, skb, const void *,
201            data, int, headlen, int, offset)
202 {
203         u16 tmp, *ptr;
204         const int len = sizeof(tmp);
205
206         if (offset >= 0) {
207                 if (headlen - offset >= len)
208                         return get_unaligned_be16(data + offset);
209                 if (!skb_copy_bits(skb, offset, &tmp, sizeof(tmp)))
210                         return be16_to_cpu(tmp);
211         } else {
212                 ptr = bpf_internal_load_pointer_neg_helper(skb, offset, len);
213                 if (likely(ptr))
214                         return get_unaligned_be16(ptr);
215         }
216
217         return -EFAULT;
218 }
219
220 BPF_CALL_2(bpf_skb_load_helper_16_no_cache, const struct sk_buff *, skb,
221            int, offset)
222 {
223         return ____bpf_skb_load_helper_16(skb, skb->data, skb->len - skb->data_len,
224                                           offset);
225 }
226
227 BPF_CALL_4(bpf_skb_load_helper_32, const struct sk_buff *, skb, const void *,
228            data, int, headlen, int, offset)
229 {
230         u32 tmp, *ptr;
231         const int len = sizeof(tmp);
232
233         if (likely(offset >= 0)) {
234                 if (headlen - offset >= len)
235                         return get_unaligned_be32(data + offset);
236                 if (!skb_copy_bits(skb, offset, &tmp, sizeof(tmp)))
237                         return be32_to_cpu(tmp);
238         } else {
239                 ptr = bpf_internal_load_pointer_neg_helper(skb, offset, len);
240                 if (likely(ptr))
241                         return get_unaligned_be32(ptr);
242         }
243
244         return -EFAULT;
245 }
246
247 BPF_CALL_2(bpf_skb_load_helper_32_no_cache, const struct sk_buff *, skb,
248            int, offset)
249 {
250         return ____bpf_skb_load_helper_32(skb, skb->data, skb->len - skb->data_len,
251                                           offset);
252 }
253
254 BPF_CALL_0(bpf_get_raw_cpu_id)
255 {
256         return raw_smp_processor_id();
257 }
258
259 static const struct bpf_func_proto bpf_get_raw_smp_processor_id_proto = {
260         .func           = bpf_get_raw_cpu_id,
261         .gpl_only       = false,
262         .ret_type       = RET_INTEGER,
263 };
264
265 static u32 convert_skb_access(int skb_field, int dst_reg, int src_reg,
266                               struct bpf_insn *insn_buf)
267 {
268         struct bpf_insn *insn = insn_buf;
269
270         switch (skb_field) {
271         case SKF_AD_MARK:
272                 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, mark) != 4);
273
274                 *insn++ = BPF_LDX_MEM(BPF_W, dst_reg, src_reg,
275                                       offsetof(struct sk_buff, mark));
276                 break;
277
278         case SKF_AD_PKTTYPE:
279                 *insn++ = BPF_LDX_MEM(BPF_B, dst_reg, src_reg, PKT_TYPE_OFFSET());
280                 *insn++ = BPF_ALU32_IMM(BPF_AND, dst_reg, PKT_TYPE_MAX);
281 #ifdef __BIG_ENDIAN_BITFIELD
282                 *insn++ = BPF_ALU32_IMM(BPF_RSH, dst_reg, 5);
283 #endif
284                 break;
285
286         case SKF_AD_QUEUE:
287                 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, queue_mapping) != 2);
288
289                 *insn++ = BPF_LDX_MEM(BPF_H, dst_reg, src_reg,
290                                       offsetof(struct sk_buff, queue_mapping));
291                 break;
292
293         case SKF_AD_VLAN_TAG:
294         case SKF_AD_VLAN_TAG_PRESENT:
295                 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, vlan_tci) != 2);
296                 BUILD_BUG_ON(VLAN_TAG_PRESENT != 0x1000);
297
298                 /* dst_reg = *(u16 *) (src_reg + offsetof(vlan_tci)) */
299                 *insn++ = BPF_LDX_MEM(BPF_H, dst_reg, src_reg,
300                                       offsetof(struct sk_buff, vlan_tci));
301                 if (skb_field == SKF_AD_VLAN_TAG) {
302                         *insn++ = BPF_ALU32_IMM(BPF_AND, dst_reg,
303                                                 ~VLAN_TAG_PRESENT);
304                 } else {
305                         /* dst_reg >>= 12 */
306                         *insn++ = BPF_ALU32_IMM(BPF_RSH, dst_reg, 12);
307                         /* dst_reg &= 1 */
308                         *insn++ = BPF_ALU32_IMM(BPF_AND, dst_reg, 1);
309                 }
310                 break;
311         }
312
313         return insn - insn_buf;
314 }
315
316 static bool convert_bpf_extensions(struct sock_filter *fp,
317                                    struct bpf_insn **insnp)
318 {
319         struct bpf_insn *insn = *insnp;
320         u32 cnt;
321
322         switch (fp->k) {
323         case SKF_AD_OFF + SKF_AD_PROTOCOL:
324                 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, protocol) != 2);
325
326                 /* A = *(u16 *) (CTX + offsetof(protocol)) */
327                 *insn++ = BPF_LDX_MEM(BPF_H, BPF_REG_A, BPF_REG_CTX,
328                                       offsetof(struct sk_buff, protocol));
329                 /* A = ntohs(A) [emitting a nop or swap16] */
330                 *insn = BPF_ENDIAN(BPF_FROM_BE, BPF_REG_A, 16);
331                 break;
332
333         case SKF_AD_OFF + SKF_AD_PKTTYPE:
334                 cnt = convert_skb_access(SKF_AD_PKTTYPE, BPF_REG_A, BPF_REG_CTX, insn);
335                 insn += cnt - 1;
336                 break;
337
338         case SKF_AD_OFF + SKF_AD_IFINDEX:
339         case SKF_AD_OFF + SKF_AD_HATYPE:
340                 BUILD_BUG_ON(FIELD_SIZEOF(struct net_device, ifindex) != 4);
341                 BUILD_BUG_ON(FIELD_SIZEOF(struct net_device, type) != 2);
342
343                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct sk_buff, dev),
344                                       BPF_REG_TMP, BPF_REG_CTX,
345                                       offsetof(struct sk_buff, dev));
346                 /* if (tmp != 0) goto pc + 1 */
347                 *insn++ = BPF_JMP_IMM(BPF_JNE, BPF_REG_TMP, 0, 1);
348                 *insn++ = BPF_EXIT_INSN();
349                 if (fp->k == SKF_AD_OFF + SKF_AD_IFINDEX)
350                         *insn = BPF_LDX_MEM(BPF_W, BPF_REG_A, BPF_REG_TMP,
351                                             offsetof(struct net_device, ifindex));
352                 else
353                         *insn = BPF_LDX_MEM(BPF_H, BPF_REG_A, BPF_REG_TMP,
354                                             offsetof(struct net_device, type));
355                 break;
356
357         case SKF_AD_OFF + SKF_AD_MARK:
358                 cnt = convert_skb_access(SKF_AD_MARK, BPF_REG_A, BPF_REG_CTX, insn);
359                 insn += cnt - 1;
360                 break;
361
362         case SKF_AD_OFF + SKF_AD_RXHASH:
363                 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, hash) != 4);
364
365                 *insn = BPF_LDX_MEM(BPF_W, BPF_REG_A, BPF_REG_CTX,
366                                     offsetof(struct sk_buff, hash));
367                 break;
368
369         case SKF_AD_OFF + SKF_AD_QUEUE:
370                 cnt = convert_skb_access(SKF_AD_QUEUE, BPF_REG_A, BPF_REG_CTX, insn);
371                 insn += cnt - 1;
372                 break;
373
374         case SKF_AD_OFF + SKF_AD_VLAN_TAG:
375                 cnt = convert_skb_access(SKF_AD_VLAN_TAG,
376                                          BPF_REG_A, BPF_REG_CTX, insn);
377                 insn += cnt - 1;
378                 break;
379
380         case SKF_AD_OFF + SKF_AD_VLAN_TAG_PRESENT:
381                 cnt = convert_skb_access(SKF_AD_VLAN_TAG_PRESENT,
382                                          BPF_REG_A, BPF_REG_CTX, insn);
383                 insn += cnt - 1;
384                 break;
385
386         case SKF_AD_OFF + SKF_AD_VLAN_TPID:
387                 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, vlan_proto) != 2);
388
389                 /* A = *(u16 *) (CTX + offsetof(vlan_proto)) */
390                 *insn++ = BPF_LDX_MEM(BPF_H, BPF_REG_A, BPF_REG_CTX,
391                                       offsetof(struct sk_buff, vlan_proto));
392                 /* A = ntohs(A) [emitting a nop or swap16] */
393                 *insn = BPF_ENDIAN(BPF_FROM_BE, BPF_REG_A, 16);
394                 break;
395
396         case SKF_AD_OFF + SKF_AD_PAY_OFFSET:
397         case SKF_AD_OFF + SKF_AD_NLATTR:
398         case SKF_AD_OFF + SKF_AD_NLATTR_NEST:
399         case SKF_AD_OFF + SKF_AD_CPU:
400         case SKF_AD_OFF + SKF_AD_RANDOM:
401                 /* arg1 = CTX */
402                 *insn++ = BPF_MOV64_REG(BPF_REG_ARG1, BPF_REG_CTX);
403                 /* arg2 = A */
404                 *insn++ = BPF_MOV64_REG(BPF_REG_ARG2, BPF_REG_A);
405                 /* arg3 = X */
406                 *insn++ = BPF_MOV64_REG(BPF_REG_ARG3, BPF_REG_X);
407                 /* Emit call(arg1=CTX, arg2=A, arg3=X) */
408                 switch (fp->k) {
409                 case SKF_AD_OFF + SKF_AD_PAY_OFFSET:
410                         *insn = BPF_EMIT_CALL(bpf_skb_get_pay_offset);
411                         break;
412                 case SKF_AD_OFF + SKF_AD_NLATTR:
413                         *insn = BPF_EMIT_CALL(bpf_skb_get_nlattr);
414                         break;
415                 case SKF_AD_OFF + SKF_AD_NLATTR_NEST:
416                         *insn = BPF_EMIT_CALL(bpf_skb_get_nlattr_nest);
417                         break;
418                 case SKF_AD_OFF + SKF_AD_CPU:
419                         *insn = BPF_EMIT_CALL(bpf_get_raw_cpu_id);
420                         break;
421                 case SKF_AD_OFF + SKF_AD_RANDOM:
422                         *insn = BPF_EMIT_CALL(bpf_user_rnd_u32);
423                         bpf_user_rnd_init_once();
424                         break;
425                 }
426                 break;
427
428         case SKF_AD_OFF + SKF_AD_ALU_XOR_X:
429                 /* A ^= X */
430                 *insn = BPF_ALU32_REG(BPF_XOR, BPF_REG_A, BPF_REG_X);
431                 break;
432
433         default:
434                 /* This is just a dummy call to avoid letting the compiler
435                  * evict __bpf_call_base() as an optimization. Placed here
436                  * where no-one bothers.
437                  */
438                 BUG_ON(__bpf_call_base(0, 0, 0, 0, 0) != 0);
439                 return false;
440         }
441
442         *insnp = insn;
443         return true;
444 }
445
446 static bool convert_bpf_ld_abs(struct sock_filter *fp, struct bpf_insn **insnp)
447 {
448         const bool unaligned_ok = IS_BUILTIN(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS);
449         int size = bpf_size_to_bytes(BPF_SIZE(fp->code));
450         bool endian = BPF_SIZE(fp->code) == BPF_H ||
451                       BPF_SIZE(fp->code) == BPF_W;
452         bool indirect = BPF_MODE(fp->code) == BPF_IND;
453         const int ip_align = NET_IP_ALIGN;
454         struct bpf_insn *insn = *insnp;
455         int offset = fp->k;
456
457         if (!indirect &&
458             ((unaligned_ok && offset >= 0) ||
459              (!unaligned_ok && offset >= 0 &&
460               offset + ip_align >= 0 &&
461               offset + ip_align % size == 0))) {
462                 *insn++ = BPF_MOV64_REG(BPF_REG_TMP, BPF_REG_H);
463                 *insn++ = BPF_ALU64_IMM(BPF_SUB, BPF_REG_TMP, offset);
464                 *insn++ = BPF_JMP_IMM(BPF_JSLT, BPF_REG_TMP, size, 2 + endian);
465                 *insn++ = BPF_LDX_MEM(BPF_SIZE(fp->code), BPF_REG_A, BPF_REG_D,
466                                       offset);
467                 if (endian)
468                         *insn++ = BPF_ENDIAN(BPF_FROM_BE, BPF_REG_A, size * 8);
469                 *insn++ = BPF_JMP_A(8);
470         }
471
472         *insn++ = BPF_MOV64_REG(BPF_REG_ARG1, BPF_REG_CTX);
473         *insn++ = BPF_MOV64_REG(BPF_REG_ARG2, BPF_REG_D);
474         *insn++ = BPF_MOV64_REG(BPF_REG_ARG3, BPF_REG_H);
475         if (!indirect) {
476                 *insn++ = BPF_MOV64_IMM(BPF_REG_ARG4, offset);
477         } else {
478                 *insn++ = BPF_MOV64_REG(BPF_REG_ARG4, BPF_REG_X);
479                 if (fp->k)
480                         *insn++ = BPF_ALU64_IMM(BPF_ADD, BPF_REG_ARG4, offset);
481         }
482
483         switch (BPF_SIZE(fp->code)) {
484         case BPF_B:
485                 *insn++ = BPF_EMIT_CALL(bpf_skb_load_helper_8);
486                 break;
487         case BPF_H:
488                 *insn++ = BPF_EMIT_CALL(bpf_skb_load_helper_16);
489                 break;
490         case BPF_W:
491                 *insn++ = BPF_EMIT_CALL(bpf_skb_load_helper_32);
492                 break;
493         default:
494                 return false;
495         }
496
497         *insn++ = BPF_JMP_IMM(BPF_JSGE, BPF_REG_A, 0, 2);
498         *insn++ = BPF_ALU32_REG(BPF_XOR, BPF_REG_A, BPF_REG_A);
499         *insn   = BPF_EXIT_INSN();
500
501         *insnp = insn;
502         return true;
503 }
504
505 /**
506  *      bpf_convert_filter - convert filter program
507  *      @prog: the user passed filter program
508  *      @len: the length of the user passed filter program
509  *      @new_prog: allocated 'struct bpf_prog' or NULL
510  *      @new_len: pointer to store length of converted program
511  *      @seen_ld_abs: bool whether we've seen ld_abs/ind
512  *
513  * Remap 'sock_filter' style classic BPF (cBPF) instruction set to 'bpf_insn'
514  * style extended BPF (eBPF).
515  * Conversion workflow:
516  *
517  * 1) First pass for calculating the new program length:
518  *   bpf_convert_filter(old_prog, old_len, NULL, &new_len, &seen_ld_abs)
519  *
520  * 2) 2nd pass to remap in two passes: 1st pass finds new
521  *    jump offsets, 2nd pass remapping:
522  *   bpf_convert_filter(old_prog, old_len, new_prog, &new_len, &seen_ld_abs)
523  */
524 static int bpf_convert_filter(struct sock_filter *prog, int len,
525                               struct bpf_prog *new_prog, int *new_len,
526                               bool *seen_ld_abs)
527 {
528         int new_flen = 0, pass = 0, target, i, stack_off;
529         struct bpf_insn *new_insn, *first_insn = NULL;
530         struct sock_filter *fp;
531         int *addrs = NULL;
532         u8 bpf_src;
533
534         BUILD_BUG_ON(BPF_MEMWORDS * sizeof(u32) > MAX_BPF_STACK);
535         BUILD_BUG_ON(BPF_REG_FP + 1 != MAX_BPF_REG);
536
537         if (len <= 0 || len > BPF_MAXINSNS)
538                 return -EINVAL;
539
540         if (new_prog) {
541                 first_insn = new_prog->insnsi;
542                 addrs = kcalloc(len, sizeof(*addrs),
543                                 GFP_KERNEL | __GFP_NOWARN);
544                 if (!addrs)
545                         return -ENOMEM;
546         }
547
548 do_pass:
549         new_insn = first_insn;
550         fp = prog;
551
552         /* Classic BPF related prologue emission. */
553         if (new_prog) {
554                 /* Classic BPF expects A and X to be reset first. These need
555                  * to be guaranteed to be the first two instructions.
556                  */
557                 *new_insn++ = BPF_ALU32_REG(BPF_XOR, BPF_REG_A, BPF_REG_A);
558                 *new_insn++ = BPF_ALU32_REG(BPF_XOR, BPF_REG_X, BPF_REG_X);
559
560                 /* All programs must keep CTX in callee saved BPF_REG_CTX.
561                  * In eBPF case it's done by the compiler, here we need to
562                  * do this ourself. Initial CTX is present in BPF_REG_ARG1.
563                  */
564                 *new_insn++ = BPF_MOV64_REG(BPF_REG_CTX, BPF_REG_ARG1);
565                 if (*seen_ld_abs) {
566                         /* For packet access in classic BPF, cache skb->data
567                          * in callee-saved BPF R8 and skb->len - skb->data_len
568                          * (headlen) in BPF R9. Since classic BPF is read-only
569                          * on CTX, we only need to cache it once.
570                          */
571                         *new_insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct sk_buff, data),
572                                                   BPF_REG_D, BPF_REG_CTX,
573                                                   offsetof(struct sk_buff, data));
574                         *new_insn++ = BPF_LDX_MEM(BPF_W, BPF_REG_H, BPF_REG_CTX,
575                                                   offsetof(struct sk_buff, len));
576                         *new_insn++ = BPF_LDX_MEM(BPF_W, BPF_REG_TMP, BPF_REG_CTX,
577                                                   offsetof(struct sk_buff, data_len));
578                         *new_insn++ = BPF_ALU32_REG(BPF_SUB, BPF_REG_H, BPF_REG_TMP);
579                 }
580         } else {
581                 new_insn += 3;
582         }
583
584         for (i = 0; i < len; fp++, i++) {
585                 struct bpf_insn tmp_insns[32] = { };
586                 struct bpf_insn *insn = tmp_insns;
587
588                 if (addrs)
589                         addrs[i] = new_insn - first_insn;
590
591                 switch (fp->code) {
592                 /* All arithmetic insns and skb loads map as-is. */
593                 case BPF_ALU | BPF_ADD | BPF_X:
594                 case BPF_ALU | BPF_ADD | BPF_K:
595                 case BPF_ALU | BPF_SUB | BPF_X:
596                 case BPF_ALU | BPF_SUB | BPF_K:
597                 case BPF_ALU | BPF_AND | BPF_X:
598                 case BPF_ALU | BPF_AND | BPF_K:
599                 case BPF_ALU | BPF_OR | BPF_X:
600                 case BPF_ALU | BPF_OR | BPF_K:
601                 case BPF_ALU | BPF_LSH | BPF_X:
602                 case BPF_ALU | BPF_LSH | BPF_K:
603                 case BPF_ALU | BPF_RSH | BPF_X:
604                 case BPF_ALU | BPF_RSH | BPF_K:
605                 case BPF_ALU | BPF_XOR | BPF_X:
606                 case BPF_ALU | BPF_XOR | BPF_K:
607                 case BPF_ALU | BPF_MUL | BPF_X:
608                 case BPF_ALU | BPF_MUL | BPF_K:
609                 case BPF_ALU | BPF_DIV | BPF_X:
610                 case BPF_ALU | BPF_DIV | BPF_K:
611                 case BPF_ALU | BPF_MOD | BPF_X:
612                 case BPF_ALU | BPF_MOD | BPF_K:
613                 case BPF_ALU | BPF_NEG:
614                 case BPF_LD | BPF_ABS | BPF_W:
615                 case BPF_LD | BPF_ABS | BPF_H:
616                 case BPF_LD | BPF_ABS | BPF_B:
617                 case BPF_LD | BPF_IND | BPF_W:
618                 case BPF_LD | BPF_IND | BPF_H:
619                 case BPF_LD | BPF_IND | BPF_B:
620                         /* Check for overloaded BPF extension and
621                          * directly convert it if found, otherwise
622                          * just move on with mapping.
623                          */
624                         if (BPF_CLASS(fp->code) == BPF_LD &&
625                             BPF_MODE(fp->code) == BPF_ABS &&
626                             convert_bpf_extensions(fp, &insn))
627                                 break;
628                         if (BPF_CLASS(fp->code) == BPF_LD &&
629                             convert_bpf_ld_abs(fp, &insn)) {
630                                 *seen_ld_abs = true;
631                                 break;
632                         }
633
634                         if (fp->code == (BPF_ALU | BPF_DIV | BPF_X) ||
635                             fp->code == (BPF_ALU | BPF_MOD | BPF_X)) {
636                                 *insn++ = BPF_MOV32_REG(BPF_REG_X, BPF_REG_X);
637                                 /* Error with exception code on div/mod by 0.
638                                  * For cBPF programs, this was always return 0.
639                                  */
640                                 *insn++ = BPF_JMP_IMM(BPF_JNE, BPF_REG_X, 0, 2);
641                                 *insn++ = BPF_ALU32_REG(BPF_XOR, BPF_REG_A, BPF_REG_A);
642                                 *insn++ = BPF_EXIT_INSN();
643                         }
644
645                         *insn = BPF_RAW_INSN(fp->code, BPF_REG_A, BPF_REG_X, 0, fp->k);
646                         break;
647
648                 /* Jump transformation cannot use BPF block macros
649                  * everywhere as offset calculation and target updates
650                  * require a bit more work than the rest, i.e. jump
651                  * opcodes map as-is, but offsets need adjustment.
652                  */
653
654 #define BPF_EMIT_JMP                                                    \
655         do {                                                            \
656                 const s32 off_min = S16_MIN, off_max = S16_MAX;         \
657                 s32 off;                                                \
658                                                                         \
659                 if (target >= len || target < 0)                        \
660                         goto err;                                       \
661                 off = addrs ? addrs[target] - addrs[i] - 1 : 0;         \
662                 /* Adjust pc relative offset for 2nd or 3rd insn. */    \
663                 off -= insn - tmp_insns;                                \
664                 /* Reject anything not fitting into insn->off. */       \
665                 if (off < off_min || off > off_max)                     \
666                         goto err;                                       \
667                 insn->off = off;                                        \
668         } while (0)
669
670                 case BPF_JMP | BPF_JA:
671                         target = i + fp->k + 1;
672                         insn->code = fp->code;
673                         BPF_EMIT_JMP;
674                         break;
675
676                 case BPF_JMP | BPF_JEQ | BPF_K:
677                 case BPF_JMP | BPF_JEQ | BPF_X:
678                 case BPF_JMP | BPF_JSET | BPF_K:
679                 case BPF_JMP | BPF_JSET | BPF_X:
680                 case BPF_JMP | BPF_JGT | BPF_K:
681                 case BPF_JMP | BPF_JGT | BPF_X:
682                 case BPF_JMP | BPF_JGE | BPF_K:
683                 case BPF_JMP | BPF_JGE | BPF_X:
684                         if (BPF_SRC(fp->code) == BPF_K && (int) fp->k < 0) {
685                                 /* BPF immediates are signed, zero extend
686                                  * immediate into tmp register and use it
687                                  * in compare insn.
688                                  */
689                                 *insn++ = BPF_MOV32_IMM(BPF_REG_TMP, fp->k);
690
691                                 insn->dst_reg = BPF_REG_A;
692                                 insn->src_reg = BPF_REG_TMP;
693                                 bpf_src = BPF_X;
694                         } else {
695                                 insn->dst_reg = BPF_REG_A;
696                                 insn->imm = fp->k;
697                                 bpf_src = BPF_SRC(fp->code);
698                                 insn->src_reg = bpf_src == BPF_X ? BPF_REG_X : 0;
699                         }
700
701                         /* Common case where 'jump_false' is next insn. */
702                         if (fp->jf == 0) {
703                                 insn->code = BPF_JMP | BPF_OP(fp->code) | bpf_src;
704                                 target = i + fp->jt + 1;
705                                 BPF_EMIT_JMP;
706                                 break;
707                         }
708
709                         /* Convert some jumps when 'jump_true' is next insn. */
710                         if (fp->jt == 0) {
711                                 switch (BPF_OP(fp->code)) {
712                                 case BPF_JEQ:
713                                         insn->code = BPF_JMP | BPF_JNE | bpf_src;
714                                         break;
715                                 case BPF_JGT:
716                                         insn->code = BPF_JMP | BPF_JLE | bpf_src;
717                                         break;
718                                 case BPF_JGE:
719                                         insn->code = BPF_JMP | BPF_JLT | bpf_src;
720                                         break;
721                                 default:
722                                         goto jmp_rest;
723                                 }
724
725                                 target = i + fp->jf + 1;
726                                 BPF_EMIT_JMP;
727                                 break;
728                         }
729 jmp_rest:
730                         /* Other jumps are mapped into two insns: Jxx and JA. */
731                         target = i + fp->jt + 1;
732                         insn->code = BPF_JMP | BPF_OP(fp->code) | bpf_src;
733                         BPF_EMIT_JMP;
734                         insn++;
735
736                         insn->code = BPF_JMP | BPF_JA;
737                         target = i + fp->jf + 1;
738                         BPF_EMIT_JMP;
739                         break;
740
741                 /* ldxb 4 * ([14] & 0xf) is remaped into 6 insns. */
742                 case BPF_LDX | BPF_MSH | BPF_B: {
743                         struct sock_filter tmp = {
744                                 .code   = BPF_LD | BPF_ABS | BPF_B,
745                                 .k      = fp->k,
746                         };
747
748                         *seen_ld_abs = true;
749
750                         /* X = A */
751                         *insn++ = BPF_MOV64_REG(BPF_REG_X, BPF_REG_A);
752                         /* A = BPF_R0 = *(u8 *) (skb->data + K) */
753                         convert_bpf_ld_abs(&tmp, &insn);
754                         insn++;
755                         /* A &= 0xf */
756                         *insn++ = BPF_ALU32_IMM(BPF_AND, BPF_REG_A, 0xf);
757                         /* A <<= 2 */
758                         *insn++ = BPF_ALU32_IMM(BPF_LSH, BPF_REG_A, 2);
759                         /* tmp = X */
760                         *insn++ = BPF_MOV64_REG(BPF_REG_TMP, BPF_REG_X);
761                         /* X = A */
762                         *insn++ = BPF_MOV64_REG(BPF_REG_X, BPF_REG_A);
763                         /* A = tmp */
764                         *insn = BPF_MOV64_REG(BPF_REG_A, BPF_REG_TMP);
765                         break;
766                 }
767                 /* RET_K is remaped into 2 insns. RET_A case doesn't need an
768                  * extra mov as BPF_REG_0 is already mapped into BPF_REG_A.
769                  */
770                 case BPF_RET | BPF_A:
771                 case BPF_RET | BPF_K:
772                         if (BPF_RVAL(fp->code) == BPF_K)
773                                 *insn++ = BPF_MOV32_RAW(BPF_K, BPF_REG_0,
774                                                         0, fp->k);
775                         *insn = BPF_EXIT_INSN();
776                         break;
777
778                 /* Store to stack. */
779                 case BPF_ST:
780                 case BPF_STX:
781                         stack_off = fp->k * 4  + 4;
782                         *insn = BPF_STX_MEM(BPF_W, BPF_REG_FP, BPF_CLASS(fp->code) ==
783                                             BPF_ST ? BPF_REG_A : BPF_REG_X,
784                                             -stack_off);
785                         /* check_load_and_stores() verifies that classic BPF can
786                          * load from stack only after write, so tracking
787                          * stack_depth for ST|STX insns is enough
788                          */
789                         if (new_prog && new_prog->aux->stack_depth < stack_off)
790                                 new_prog->aux->stack_depth = stack_off;
791                         break;
792
793                 /* Load from stack. */
794                 case BPF_LD | BPF_MEM:
795                 case BPF_LDX | BPF_MEM:
796                         stack_off = fp->k * 4  + 4;
797                         *insn = BPF_LDX_MEM(BPF_W, BPF_CLASS(fp->code) == BPF_LD  ?
798                                             BPF_REG_A : BPF_REG_X, BPF_REG_FP,
799                                             -stack_off);
800                         break;
801
802                 /* A = K or X = K */
803                 case BPF_LD | BPF_IMM:
804                 case BPF_LDX | BPF_IMM:
805                         *insn = BPF_MOV32_IMM(BPF_CLASS(fp->code) == BPF_LD ?
806                                               BPF_REG_A : BPF_REG_X, fp->k);
807                         break;
808
809                 /* X = A */
810                 case BPF_MISC | BPF_TAX:
811                         *insn = BPF_MOV64_REG(BPF_REG_X, BPF_REG_A);
812                         break;
813
814                 /* A = X */
815                 case BPF_MISC | BPF_TXA:
816                         *insn = BPF_MOV64_REG(BPF_REG_A, BPF_REG_X);
817                         break;
818
819                 /* A = skb->len or X = skb->len */
820                 case BPF_LD | BPF_W | BPF_LEN:
821                 case BPF_LDX | BPF_W | BPF_LEN:
822                         *insn = BPF_LDX_MEM(BPF_W, BPF_CLASS(fp->code) == BPF_LD ?
823                                             BPF_REG_A : BPF_REG_X, BPF_REG_CTX,
824                                             offsetof(struct sk_buff, len));
825                         break;
826
827                 /* Access seccomp_data fields. */
828                 case BPF_LDX | BPF_ABS | BPF_W:
829                         /* A = *(u32 *) (ctx + K) */
830                         *insn = BPF_LDX_MEM(BPF_W, BPF_REG_A, BPF_REG_CTX, fp->k);
831                         break;
832
833                 /* Unknown instruction. */
834                 default:
835                         goto err;
836                 }
837
838                 insn++;
839                 if (new_prog)
840                         memcpy(new_insn, tmp_insns,
841                                sizeof(*insn) * (insn - tmp_insns));
842                 new_insn += insn - tmp_insns;
843         }
844
845         if (!new_prog) {
846                 /* Only calculating new length. */
847                 *new_len = new_insn - first_insn;
848                 if (*seen_ld_abs)
849                         *new_len += 4; /* Prologue bits. */
850                 return 0;
851         }
852
853         pass++;
854         if (new_flen != new_insn - first_insn) {
855                 new_flen = new_insn - first_insn;
856                 if (pass > 2)
857                         goto err;
858                 goto do_pass;
859         }
860
861         kfree(addrs);
862         BUG_ON(*new_len != new_flen);
863         return 0;
864 err:
865         kfree(addrs);
866         return -EINVAL;
867 }
868
869 /* Security:
870  *
871  * As we dont want to clear mem[] array for each packet going through
872  * __bpf_prog_run(), we check that filter loaded by user never try to read
873  * a cell if not previously written, and we check all branches to be sure
874  * a malicious user doesn't try to abuse us.
875  */
876 static int check_load_and_stores(const struct sock_filter *filter, int flen)
877 {
878         u16 *masks, memvalid = 0; /* One bit per cell, 16 cells */
879         int pc, ret = 0;
880
881         BUILD_BUG_ON(BPF_MEMWORDS > 16);
882
883         masks = kmalloc_array(flen, sizeof(*masks), GFP_KERNEL);
884         if (!masks)
885                 return -ENOMEM;
886
887         memset(masks, 0xff, flen * sizeof(*masks));
888
889         for (pc = 0; pc < flen; pc++) {
890                 memvalid &= masks[pc];
891
892                 switch (filter[pc].code) {
893                 case BPF_ST:
894                 case BPF_STX:
895                         memvalid |= (1 << filter[pc].k);
896                         break;
897                 case BPF_LD | BPF_MEM:
898                 case BPF_LDX | BPF_MEM:
899                         if (!(memvalid & (1 << filter[pc].k))) {
900                                 ret = -EINVAL;
901                                 goto error;
902                         }
903                         break;
904                 case BPF_JMP | BPF_JA:
905                         /* A jump must set masks on target */
906                         masks[pc + 1 + filter[pc].k] &= memvalid;
907                         memvalid = ~0;
908                         break;
909                 case BPF_JMP | BPF_JEQ | BPF_K:
910                 case BPF_JMP | BPF_JEQ | BPF_X:
911                 case BPF_JMP | BPF_JGE | BPF_K:
912                 case BPF_JMP | BPF_JGE | BPF_X:
913                 case BPF_JMP | BPF_JGT | BPF_K:
914                 case BPF_JMP | BPF_JGT | BPF_X:
915                 case BPF_JMP | BPF_JSET | BPF_K:
916                 case BPF_JMP | BPF_JSET | BPF_X:
917                         /* A jump must set masks on targets */
918                         masks[pc + 1 + filter[pc].jt] &= memvalid;
919                         masks[pc + 1 + filter[pc].jf] &= memvalid;
920                         memvalid = ~0;
921                         break;
922                 }
923         }
924 error:
925         kfree(masks);
926         return ret;
927 }
928
929 static bool chk_code_allowed(u16 code_to_probe)
930 {
931         static const bool codes[] = {
932                 /* 32 bit ALU operations */
933                 [BPF_ALU | BPF_ADD | BPF_K] = true,
934                 [BPF_ALU | BPF_ADD | BPF_X] = true,
935                 [BPF_ALU | BPF_SUB | BPF_K] = true,
936                 [BPF_ALU | BPF_SUB | BPF_X] = true,
937                 [BPF_ALU | BPF_MUL | BPF_K] = true,
938                 [BPF_ALU | BPF_MUL | BPF_X] = true,
939                 [BPF_ALU | BPF_DIV | BPF_K] = true,
940                 [BPF_ALU | BPF_DIV | BPF_X] = true,
941                 [BPF_ALU | BPF_MOD | BPF_K] = true,
942                 [BPF_ALU | BPF_MOD | BPF_X] = true,
943                 [BPF_ALU | BPF_AND | BPF_K] = true,
944                 [BPF_ALU | BPF_AND | BPF_X] = true,
945                 [BPF_ALU | BPF_OR | BPF_K] = true,
946                 [BPF_ALU | BPF_OR | BPF_X] = true,
947                 [BPF_ALU | BPF_XOR | BPF_K] = true,
948                 [BPF_ALU | BPF_XOR | BPF_X] = true,
949                 [BPF_ALU | BPF_LSH | BPF_K] = true,
950                 [BPF_ALU | BPF_LSH | BPF_X] = true,
951                 [BPF_ALU | BPF_RSH | BPF_K] = true,
952                 [BPF_ALU | BPF_RSH | BPF_X] = true,
953                 [BPF_ALU | BPF_NEG] = true,
954                 /* Load instructions */
955                 [BPF_LD | BPF_W | BPF_ABS] = true,
956                 [BPF_LD | BPF_H | BPF_ABS] = true,
957                 [BPF_LD | BPF_B | BPF_ABS] = true,
958                 [BPF_LD | BPF_W | BPF_LEN] = true,
959                 [BPF_LD | BPF_W | BPF_IND] = true,
960                 [BPF_LD | BPF_H | BPF_IND] = true,
961                 [BPF_LD | BPF_B | BPF_IND] = true,
962                 [BPF_LD | BPF_IMM] = true,
963                 [BPF_LD | BPF_MEM] = true,
964                 [BPF_LDX | BPF_W | BPF_LEN] = true,
965                 [BPF_LDX | BPF_B | BPF_MSH] = true,
966                 [BPF_LDX | BPF_IMM] = true,
967                 [BPF_LDX | BPF_MEM] = true,
968                 /* Store instructions */
969                 [BPF_ST] = true,
970                 [BPF_STX] = true,
971                 /* Misc instructions */
972                 [BPF_MISC | BPF_TAX] = true,
973                 [BPF_MISC | BPF_TXA] = true,
974                 /* Return instructions */
975                 [BPF_RET | BPF_K] = true,
976                 [BPF_RET | BPF_A] = true,
977                 /* Jump instructions */
978                 [BPF_JMP | BPF_JA] = true,
979                 [BPF_JMP | BPF_JEQ | BPF_K] = true,
980                 [BPF_JMP | BPF_JEQ | BPF_X] = true,
981                 [BPF_JMP | BPF_JGE | BPF_K] = true,
982                 [BPF_JMP | BPF_JGE | BPF_X] = true,
983                 [BPF_JMP | BPF_JGT | BPF_K] = true,
984                 [BPF_JMP | BPF_JGT | BPF_X] = true,
985                 [BPF_JMP | BPF_JSET | BPF_K] = true,
986                 [BPF_JMP | BPF_JSET | BPF_X] = true,
987         };
988
989         if (code_to_probe >= ARRAY_SIZE(codes))
990                 return false;
991
992         return codes[code_to_probe];
993 }
994
995 static bool bpf_check_basics_ok(const struct sock_filter *filter,
996                                 unsigned int flen)
997 {
998         if (filter == NULL)
999                 return false;
1000         if (flen == 0 || flen > BPF_MAXINSNS)
1001                 return false;
1002
1003         return true;
1004 }
1005
1006 /**
1007  *      bpf_check_classic - verify socket filter code
1008  *      @filter: filter to verify
1009  *      @flen: length of filter
1010  *
1011  * Check the user's filter code. If we let some ugly
1012  * filter code slip through kaboom! The filter must contain
1013  * no references or jumps that are out of range, no illegal
1014  * instructions, and must end with a RET instruction.
1015  *
1016  * All jumps are forward as they are not signed.
1017  *
1018  * Returns 0 if the rule set is legal or -EINVAL if not.
1019  */
1020 static int bpf_check_classic(const struct sock_filter *filter,
1021                              unsigned int flen)
1022 {
1023         bool anc_found;
1024         int pc;
1025
1026         /* Check the filter code now */
1027         for (pc = 0; pc < flen; pc++) {
1028                 const struct sock_filter *ftest = &filter[pc];
1029
1030                 /* May we actually operate on this code? */
1031                 if (!chk_code_allowed(ftest->code))
1032                         return -EINVAL;
1033
1034                 /* Some instructions need special checks */
1035                 switch (ftest->code) {
1036                 case BPF_ALU | BPF_DIV | BPF_K:
1037                 case BPF_ALU | BPF_MOD | BPF_K:
1038                         /* Check for division by zero */
1039                         if (ftest->k == 0)
1040                                 return -EINVAL;
1041                         break;
1042                 case BPF_ALU | BPF_LSH | BPF_K:
1043                 case BPF_ALU | BPF_RSH | BPF_K:
1044                         if (ftest->k >= 32)
1045                                 return -EINVAL;
1046                         break;
1047                 case BPF_LD | BPF_MEM:
1048                 case BPF_LDX | BPF_MEM:
1049                 case BPF_ST:
1050                 case BPF_STX:
1051                         /* Check for invalid memory addresses */
1052                         if (ftest->k >= BPF_MEMWORDS)
1053                                 return -EINVAL;
1054                         break;
1055                 case BPF_JMP | BPF_JA:
1056                         /* Note, the large ftest->k might cause loops.
1057                          * Compare this with conditional jumps below,
1058                          * where offsets are limited. --ANK (981016)
1059                          */
1060                         if (ftest->k >= (unsigned int)(flen - pc - 1))
1061                                 return -EINVAL;
1062                         break;
1063                 case BPF_JMP | BPF_JEQ | BPF_K:
1064                 case BPF_JMP | BPF_JEQ | BPF_X:
1065                 case BPF_JMP | BPF_JGE | BPF_K:
1066                 case BPF_JMP | BPF_JGE | BPF_X:
1067                 case BPF_JMP | BPF_JGT | BPF_K:
1068                 case BPF_JMP | BPF_JGT | BPF_X:
1069                 case BPF_JMP | BPF_JSET | BPF_K:
1070                 case BPF_JMP | BPF_JSET | BPF_X:
1071                         /* Both conditionals must be safe */
1072                         if (pc + ftest->jt + 1 >= flen ||
1073                             pc + ftest->jf + 1 >= flen)
1074                                 return -EINVAL;
1075                         break;
1076                 case BPF_LD | BPF_W | BPF_ABS:
1077                 case BPF_LD | BPF_H | BPF_ABS:
1078                 case BPF_LD | BPF_B | BPF_ABS:
1079                         anc_found = false;
1080                         if (bpf_anc_helper(ftest) & BPF_ANC)
1081                                 anc_found = true;
1082                         /* Ancillary operation unknown or unsupported */
1083                         if (anc_found == false && ftest->k >= SKF_AD_OFF)
1084                                 return -EINVAL;
1085                 }
1086         }
1087
1088         /* Last instruction must be a RET code */
1089         switch (filter[flen - 1].code) {
1090         case BPF_RET | BPF_K:
1091         case BPF_RET | BPF_A:
1092                 return check_load_and_stores(filter, flen);
1093         }
1094
1095         return -EINVAL;
1096 }
1097
1098 static int bpf_prog_store_orig_filter(struct bpf_prog *fp,
1099                                       const struct sock_fprog *fprog)
1100 {
1101         unsigned int fsize = bpf_classic_proglen(fprog);
1102         struct sock_fprog_kern *fkprog;
1103
1104         fp->orig_prog = kmalloc(sizeof(*fkprog), GFP_KERNEL);
1105         if (!fp->orig_prog)
1106                 return -ENOMEM;
1107
1108         fkprog = fp->orig_prog;
1109         fkprog->len = fprog->len;
1110
1111         fkprog->filter = kmemdup(fp->insns, fsize,
1112                                  GFP_KERNEL | __GFP_NOWARN);
1113         if (!fkprog->filter) {
1114                 kfree(fp->orig_prog);
1115                 return -ENOMEM;
1116         }
1117
1118         return 0;
1119 }
1120
1121 static void bpf_release_orig_filter(struct bpf_prog *fp)
1122 {
1123         struct sock_fprog_kern *fprog = fp->orig_prog;
1124
1125         if (fprog) {
1126                 kfree(fprog->filter);
1127                 kfree(fprog);
1128         }
1129 }
1130
1131 static void __bpf_prog_release(struct bpf_prog *prog)
1132 {
1133         if (prog->type == BPF_PROG_TYPE_SOCKET_FILTER) {
1134                 bpf_prog_put(prog);
1135         } else {
1136                 bpf_release_orig_filter(prog);
1137                 bpf_prog_free(prog);
1138         }
1139 }
1140
1141 static void __sk_filter_release(struct sk_filter *fp)
1142 {
1143         __bpf_prog_release(fp->prog);
1144         kfree(fp);
1145 }
1146
1147 /**
1148  *      sk_filter_release_rcu - Release a socket filter by rcu_head
1149  *      @rcu: rcu_head that contains the sk_filter to free
1150  */
1151 static void sk_filter_release_rcu(struct rcu_head *rcu)
1152 {
1153         struct sk_filter *fp = container_of(rcu, struct sk_filter, rcu);
1154
1155         __sk_filter_release(fp);
1156 }
1157
1158 /**
1159  *      sk_filter_release - release a socket filter
1160  *      @fp: filter to remove
1161  *
1162  *      Remove a filter from a socket and release its resources.
1163  */
1164 static void sk_filter_release(struct sk_filter *fp)
1165 {
1166         if (refcount_dec_and_test(&fp->refcnt))
1167                 call_rcu(&fp->rcu, sk_filter_release_rcu);
1168 }
1169
1170 void sk_filter_uncharge(struct sock *sk, struct sk_filter *fp)
1171 {
1172         u32 filter_size = bpf_prog_size(fp->prog->len);
1173
1174         atomic_sub(filter_size, &sk->sk_omem_alloc);
1175         sk_filter_release(fp);
1176 }
1177
1178 /* try to charge the socket memory if there is space available
1179  * return true on success
1180  */
1181 static bool __sk_filter_charge(struct sock *sk, struct sk_filter *fp)
1182 {
1183         u32 filter_size = bpf_prog_size(fp->prog->len);
1184
1185         /* same check as in sock_kmalloc() */
1186         if (filter_size <= sysctl_optmem_max &&
1187             atomic_read(&sk->sk_omem_alloc) + filter_size < sysctl_optmem_max) {
1188                 atomic_add(filter_size, &sk->sk_omem_alloc);
1189                 return true;
1190         }
1191         return false;
1192 }
1193
1194 bool sk_filter_charge(struct sock *sk, struct sk_filter *fp)
1195 {
1196         if (!refcount_inc_not_zero(&fp->refcnt))
1197                 return false;
1198
1199         if (!__sk_filter_charge(sk, fp)) {
1200                 sk_filter_release(fp);
1201                 return false;
1202         }
1203         return true;
1204 }
1205
1206 static struct bpf_prog *bpf_migrate_filter(struct bpf_prog *fp)
1207 {
1208         struct sock_filter *old_prog;
1209         struct bpf_prog *old_fp;
1210         int err, new_len, old_len = fp->len;
1211         bool seen_ld_abs = false;
1212
1213         /* We are free to overwrite insns et al right here as it
1214          * won't be used at this point in time anymore internally
1215          * after the migration to the internal BPF instruction
1216          * representation.
1217          */
1218         BUILD_BUG_ON(sizeof(struct sock_filter) !=
1219                      sizeof(struct bpf_insn));
1220
1221         /* Conversion cannot happen on overlapping memory areas,
1222          * so we need to keep the user BPF around until the 2nd
1223          * pass. At this time, the user BPF is stored in fp->insns.
1224          */
1225         old_prog = kmemdup(fp->insns, old_len * sizeof(struct sock_filter),
1226                            GFP_KERNEL | __GFP_NOWARN);
1227         if (!old_prog) {
1228                 err = -ENOMEM;
1229                 goto out_err;
1230         }
1231
1232         /* 1st pass: calculate the new program length. */
1233         err = bpf_convert_filter(old_prog, old_len, NULL, &new_len,
1234                                  &seen_ld_abs);
1235         if (err)
1236                 goto out_err_free;
1237
1238         /* Expand fp for appending the new filter representation. */
1239         old_fp = fp;
1240         fp = bpf_prog_realloc(old_fp, bpf_prog_size(new_len), 0);
1241         if (!fp) {
1242                 /* The old_fp is still around in case we couldn't
1243                  * allocate new memory, so uncharge on that one.
1244                  */
1245                 fp = old_fp;
1246                 err = -ENOMEM;
1247                 goto out_err_free;
1248         }
1249
1250         fp->len = new_len;
1251
1252         /* 2nd pass: remap sock_filter insns into bpf_insn insns. */
1253         err = bpf_convert_filter(old_prog, old_len, fp, &new_len,
1254                                  &seen_ld_abs);
1255         if (err)
1256                 /* 2nd bpf_convert_filter() can fail only if it fails
1257                  * to allocate memory, remapping must succeed. Note,
1258                  * that at this time old_fp has already been released
1259                  * by krealloc().
1260                  */
1261                 goto out_err_free;
1262
1263         fp = bpf_prog_select_runtime(fp, &err);
1264         if (err)
1265                 goto out_err_free;
1266
1267         kfree(old_prog);
1268         return fp;
1269
1270 out_err_free:
1271         kfree(old_prog);
1272 out_err:
1273         __bpf_prog_release(fp);
1274         return ERR_PTR(err);
1275 }
1276
1277 static struct bpf_prog *bpf_prepare_filter(struct bpf_prog *fp,
1278                                            bpf_aux_classic_check_t trans)
1279 {
1280         int err;
1281
1282         fp->bpf_func = NULL;
1283         fp->jited = 0;
1284
1285         err = bpf_check_classic(fp->insns, fp->len);
1286         if (err) {
1287                 __bpf_prog_release(fp);
1288                 return ERR_PTR(err);
1289         }
1290
1291         /* There might be additional checks and transformations
1292          * needed on classic filters, f.e. in case of seccomp.
1293          */
1294         if (trans) {
1295                 err = trans(fp->insns, fp->len);
1296                 if (err) {
1297                         __bpf_prog_release(fp);
1298                         return ERR_PTR(err);
1299                 }
1300         }
1301
1302         /* Probe if we can JIT compile the filter and if so, do
1303          * the compilation of the filter.
1304          */
1305         bpf_jit_compile(fp);
1306
1307         /* JIT compiler couldn't process this filter, so do the
1308          * internal BPF translation for the optimized interpreter.
1309          */
1310         if (!fp->jited)
1311                 fp = bpf_migrate_filter(fp);
1312
1313         return fp;
1314 }
1315
1316 /**
1317  *      bpf_prog_create - create an unattached filter
1318  *      @pfp: the unattached filter that is created
1319  *      @fprog: the filter program
1320  *
1321  * Create a filter independent of any socket. We first run some
1322  * sanity checks on it to make sure it does not explode on us later.
1323  * If an error occurs or there is insufficient memory for the filter
1324  * a negative errno code is returned. On success the return is zero.
1325  */
1326 int bpf_prog_create(struct bpf_prog **pfp, struct sock_fprog_kern *fprog)
1327 {
1328         unsigned int fsize = bpf_classic_proglen(fprog);
1329         struct bpf_prog *fp;
1330
1331         /* Make sure new filter is there and in the right amounts. */
1332         if (!bpf_check_basics_ok(fprog->filter, fprog->len))
1333                 return -EINVAL;
1334
1335         fp = bpf_prog_alloc(bpf_prog_size(fprog->len), 0);
1336         if (!fp)
1337                 return -ENOMEM;
1338
1339         memcpy(fp->insns, fprog->filter, fsize);
1340
1341         fp->len = fprog->len;
1342         /* Since unattached filters are not copied back to user
1343          * space through sk_get_filter(), we do not need to hold
1344          * a copy here, and can spare us the work.
1345          */
1346         fp->orig_prog = NULL;
1347
1348         /* bpf_prepare_filter() already takes care of freeing
1349          * memory in case something goes wrong.
1350          */
1351         fp = bpf_prepare_filter(fp, NULL);
1352         if (IS_ERR(fp))
1353                 return PTR_ERR(fp);
1354
1355         *pfp = fp;
1356         return 0;
1357 }
1358 EXPORT_SYMBOL_GPL(bpf_prog_create);
1359
1360 /**
1361  *      bpf_prog_create_from_user - create an unattached filter from user buffer
1362  *      @pfp: the unattached filter that is created
1363  *      @fprog: the filter program
1364  *      @trans: post-classic verifier transformation handler
1365  *      @save_orig: save classic BPF program
1366  *
1367  * This function effectively does the same as bpf_prog_create(), only
1368  * that it builds up its insns buffer from user space provided buffer.
1369  * It also allows for passing a bpf_aux_classic_check_t handler.
1370  */
1371 int bpf_prog_create_from_user(struct bpf_prog **pfp, struct sock_fprog *fprog,
1372                               bpf_aux_classic_check_t trans, bool save_orig)
1373 {
1374         unsigned int fsize = bpf_classic_proglen(fprog);
1375         struct bpf_prog *fp;
1376         int err;
1377
1378         /* Make sure new filter is there and in the right amounts. */
1379         if (!bpf_check_basics_ok(fprog->filter, fprog->len))
1380                 return -EINVAL;
1381
1382         fp = bpf_prog_alloc(bpf_prog_size(fprog->len), 0);
1383         if (!fp)
1384                 return -ENOMEM;
1385
1386         if (copy_from_user(fp->insns, fprog->filter, fsize)) {
1387                 __bpf_prog_free(fp);
1388                 return -EFAULT;
1389         }
1390
1391         fp->len = fprog->len;
1392         fp->orig_prog = NULL;
1393
1394         if (save_orig) {
1395                 err = bpf_prog_store_orig_filter(fp, fprog);
1396                 if (err) {
1397                         __bpf_prog_free(fp);
1398                         return -ENOMEM;
1399                 }
1400         }
1401
1402         /* bpf_prepare_filter() already takes care of freeing
1403          * memory in case something goes wrong.
1404          */
1405         fp = bpf_prepare_filter(fp, trans);
1406         if (IS_ERR(fp))
1407                 return PTR_ERR(fp);
1408
1409         *pfp = fp;
1410         return 0;
1411 }
1412 EXPORT_SYMBOL_GPL(bpf_prog_create_from_user);
1413
1414 void bpf_prog_destroy(struct bpf_prog *fp)
1415 {
1416         __bpf_prog_release(fp);
1417 }
1418 EXPORT_SYMBOL_GPL(bpf_prog_destroy);
1419
1420 static int __sk_attach_prog(struct bpf_prog *prog, struct sock *sk)
1421 {
1422         struct sk_filter *fp, *old_fp;
1423
1424         fp = kmalloc(sizeof(*fp), GFP_KERNEL);
1425         if (!fp)
1426                 return -ENOMEM;
1427
1428         fp->prog = prog;
1429
1430         if (!__sk_filter_charge(sk, fp)) {
1431                 kfree(fp);
1432                 return -ENOMEM;
1433         }
1434         refcount_set(&fp->refcnt, 1);
1435
1436         old_fp = rcu_dereference_protected(sk->sk_filter,
1437                                            lockdep_sock_is_held(sk));
1438         rcu_assign_pointer(sk->sk_filter, fp);
1439
1440         if (old_fp)
1441                 sk_filter_uncharge(sk, old_fp);
1442
1443         return 0;
1444 }
1445
1446 static int __reuseport_attach_prog(struct bpf_prog *prog, struct sock *sk)
1447 {
1448         struct bpf_prog *old_prog;
1449         int err;
1450
1451         if (bpf_prog_size(prog->len) > sysctl_optmem_max)
1452                 return -ENOMEM;
1453
1454         if (sk_unhashed(sk) && sk->sk_reuseport) {
1455                 err = reuseport_alloc(sk);
1456                 if (err)
1457                         return err;
1458         } else if (!rcu_access_pointer(sk->sk_reuseport_cb)) {
1459                 /* The socket wasn't bound with SO_REUSEPORT */
1460                 return -EINVAL;
1461         }
1462
1463         old_prog = reuseport_attach_prog(sk, prog);
1464         if (old_prog)
1465                 bpf_prog_destroy(old_prog);
1466
1467         return 0;
1468 }
1469
1470 static
1471 struct bpf_prog *__get_filter(struct sock_fprog *fprog, struct sock *sk)
1472 {
1473         unsigned int fsize = bpf_classic_proglen(fprog);
1474         struct bpf_prog *prog;
1475         int err;
1476
1477         if (sock_flag(sk, SOCK_FILTER_LOCKED))
1478                 return ERR_PTR(-EPERM);
1479
1480         /* Make sure new filter is there and in the right amounts. */
1481         if (!bpf_check_basics_ok(fprog->filter, fprog->len))
1482                 return ERR_PTR(-EINVAL);
1483
1484         prog = bpf_prog_alloc(bpf_prog_size(fprog->len), 0);
1485         if (!prog)
1486                 return ERR_PTR(-ENOMEM);
1487
1488         if (copy_from_user(prog->insns, fprog->filter, fsize)) {
1489                 __bpf_prog_free(prog);
1490                 return ERR_PTR(-EFAULT);
1491         }
1492
1493         prog->len = fprog->len;
1494
1495         err = bpf_prog_store_orig_filter(prog, fprog);
1496         if (err) {
1497                 __bpf_prog_free(prog);
1498                 return ERR_PTR(-ENOMEM);
1499         }
1500
1501         /* bpf_prepare_filter() already takes care of freeing
1502          * memory in case something goes wrong.
1503          */
1504         return bpf_prepare_filter(prog, NULL);
1505 }
1506
1507 /**
1508  *      sk_attach_filter - attach a socket filter
1509  *      @fprog: the filter program
1510  *      @sk: the socket to use
1511  *
1512  * Attach the user's filter code. We first run some sanity checks on
1513  * it to make sure it does not explode on us later. If an error
1514  * occurs or there is insufficient memory for the filter a negative
1515  * errno code is returned. On success the return is zero.
1516  */
1517 int sk_attach_filter(struct sock_fprog *fprog, struct sock *sk)
1518 {
1519         struct bpf_prog *prog = __get_filter(fprog, sk);
1520         int err;
1521
1522         if (IS_ERR(prog))
1523                 return PTR_ERR(prog);
1524
1525         err = __sk_attach_prog(prog, sk);
1526         if (err < 0) {
1527                 __bpf_prog_release(prog);
1528                 return err;
1529         }
1530
1531         return 0;
1532 }
1533 EXPORT_SYMBOL_GPL(sk_attach_filter);
1534
1535 int sk_reuseport_attach_filter(struct sock_fprog *fprog, struct sock *sk)
1536 {
1537         struct bpf_prog *prog = __get_filter(fprog, sk);
1538         int err;
1539
1540         if (IS_ERR(prog))
1541                 return PTR_ERR(prog);
1542
1543         err = __reuseport_attach_prog(prog, sk);
1544         if (err < 0) {
1545                 __bpf_prog_release(prog);
1546                 return err;
1547         }
1548
1549         return 0;
1550 }
1551
1552 static struct bpf_prog *__get_bpf(u32 ufd, struct sock *sk)
1553 {
1554         if (sock_flag(sk, SOCK_FILTER_LOCKED))
1555                 return ERR_PTR(-EPERM);
1556
1557         return bpf_prog_get_type(ufd, BPF_PROG_TYPE_SOCKET_FILTER);
1558 }
1559
1560 int sk_attach_bpf(u32 ufd, struct sock *sk)
1561 {
1562         struct bpf_prog *prog = __get_bpf(ufd, sk);
1563         int err;
1564
1565         if (IS_ERR(prog))
1566                 return PTR_ERR(prog);
1567
1568         err = __sk_attach_prog(prog, sk);
1569         if (err < 0) {
1570                 bpf_prog_put(prog);
1571                 return err;
1572         }
1573
1574         return 0;
1575 }
1576
1577 int sk_reuseport_attach_bpf(u32 ufd, struct sock *sk)
1578 {
1579         struct bpf_prog *prog = __get_bpf(ufd, sk);
1580         int err;
1581
1582         if (IS_ERR(prog))
1583                 return PTR_ERR(prog);
1584
1585         err = __reuseport_attach_prog(prog, sk);
1586         if (err < 0) {
1587                 bpf_prog_put(prog);
1588                 return err;
1589         }
1590
1591         return 0;
1592 }
1593
1594 struct bpf_scratchpad {
1595         union {
1596                 __be32 diff[MAX_BPF_STACK / sizeof(__be32)];
1597                 u8     buff[MAX_BPF_STACK];
1598         };
1599 };
1600
1601 static DEFINE_PER_CPU(struct bpf_scratchpad, bpf_sp);
1602
1603 static inline int __bpf_try_make_writable(struct sk_buff *skb,
1604                                           unsigned int write_len)
1605 {
1606         return skb_ensure_writable(skb, write_len);
1607 }
1608
1609 static inline int bpf_try_make_writable(struct sk_buff *skb,
1610                                         unsigned int write_len)
1611 {
1612         int err = __bpf_try_make_writable(skb, write_len);
1613
1614         bpf_compute_data_pointers(skb);
1615         return err;
1616 }
1617
1618 static int bpf_try_make_head_writable(struct sk_buff *skb)
1619 {
1620         return bpf_try_make_writable(skb, skb_headlen(skb));
1621 }
1622
1623 static inline void bpf_push_mac_rcsum(struct sk_buff *skb)
1624 {
1625         if (skb_at_tc_ingress(skb))
1626                 skb_postpush_rcsum(skb, skb_mac_header(skb), skb->mac_len);
1627 }
1628
1629 static inline void bpf_pull_mac_rcsum(struct sk_buff *skb)
1630 {
1631         if (skb_at_tc_ingress(skb))
1632                 skb_postpull_rcsum(skb, skb_mac_header(skb), skb->mac_len);
1633 }
1634
1635 BPF_CALL_5(bpf_skb_store_bytes, struct sk_buff *, skb, u32, offset,
1636            const void *, from, u32, len, u64, flags)
1637 {
1638         void *ptr;
1639
1640         if (unlikely(flags & ~(BPF_F_RECOMPUTE_CSUM | BPF_F_INVALIDATE_HASH)))
1641                 return -EINVAL;
1642         if (unlikely(offset > 0xffff))
1643                 return -EFAULT;
1644         if (unlikely(bpf_try_make_writable(skb, offset + len)))
1645                 return -EFAULT;
1646
1647         ptr = skb->data + offset;
1648         if (flags & BPF_F_RECOMPUTE_CSUM)
1649                 __skb_postpull_rcsum(skb, ptr, len, offset);
1650
1651         memcpy(ptr, from, len);
1652
1653         if (flags & BPF_F_RECOMPUTE_CSUM)
1654                 __skb_postpush_rcsum(skb, ptr, len, offset);
1655         if (flags & BPF_F_INVALIDATE_HASH)
1656                 skb_clear_hash(skb);
1657
1658         return 0;
1659 }
1660
1661 static const struct bpf_func_proto bpf_skb_store_bytes_proto = {
1662         .func           = bpf_skb_store_bytes,
1663         .gpl_only       = false,
1664         .ret_type       = RET_INTEGER,
1665         .arg1_type      = ARG_PTR_TO_CTX,
1666         .arg2_type      = ARG_ANYTHING,
1667         .arg3_type      = ARG_PTR_TO_MEM,
1668         .arg4_type      = ARG_CONST_SIZE,
1669         .arg5_type      = ARG_ANYTHING,
1670 };
1671
1672 BPF_CALL_4(bpf_skb_load_bytes, const struct sk_buff *, skb, u32, offset,
1673            void *, to, u32, len)
1674 {
1675         void *ptr;
1676
1677         if (unlikely(offset > 0xffff))
1678                 goto err_clear;
1679
1680         ptr = skb_header_pointer(skb, offset, len, to);
1681         if (unlikely(!ptr))
1682                 goto err_clear;
1683         if (ptr != to)
1684                 memcpy(to, ptr, len);
1685
1686         return 0;
1687 err_clear:
1688         memset(to, 0, len);
1689         return -EFAULT;
1690 }
1691
1692 static const struct bpf_func_proto bpf_skb_load_bytes_proto = {
1693         .func           = bpf_skb_load_bytes,
1694         .gpl_only       = false,
1695         .ret_type       = RET_INTEGER,
1696         .arg1_type      = ARG_PTR_TO_CTX,
1697         .arg2_type      = ARG_ANYTHING,
1698         .arg3_type      = ARG_PTR_TO_UNINIT_MEM,
1699         .arg4_type      = ARG_CONST_SIZE,
1700 };
1701
1702 BPF_CALL_5(bpf_skb_load_bytes_relative, const struct sk_buff *, skb,
1703            u32, offset, void *, to, u32, len, u32, start_header)
1704 {
1705         u8 *ptr;
1706
1707         if (unlikely(offset > 0xffff || len > skb_headlen(skb)))
1708                 goto err_clear;
1709
1710         switch (start_header) {
1711         case BPF_HDR_START_MAC:
1712                 ptr = skb_mac_header(skb) + offset;
1713                 break;
1714         case BPF_HDR_START_NET:
1715                 ptr = skb_network_header(skb) + offset;
1716                 break;
1717         default:
1718                 goto err_clear;
1719         }
1720
1721         if (likely(ptr >= skb_mac_header(skb) &&
1722                    ptr + len <= skb_tail_pointer(skb))) {
1723                 memcpy(to, ptr, len);
1724                 return 0;
1725         }
1726
1727 err_clear:
1728         memset(to, 0, len);
1729         return -EFAULT;
1730 }
1731
1732 static const struct bpf_func_proto bpf_skb_load_bytes_relative_proto = {
1733         .func           = bpf_skb_load_bytes_relative,
1734         .gpl_only       = false,
1735         .ret_type       = RET_INTEGER,
1736         .arg1_type      = ARG_PTR_TO_CTX,
1737         .arg2_type      = ARG_ANYTHING,
1738         .arg3_type      = ARG_PTR_TO_UNINIT_MEM,
1739         .arg4_type      = ARG_CONST_SIZE,
1740         .arg5_type      = ARG_ANYTHING,
1741 };
1742
1743 BPF_CALL_2(bpf_skb_pull_data, struct sk_buff *, skb, u32, len)
1744 {
1745         /* Idea is the following: should the needed direct read/write
1746          * test fail during runtime, we can pull in more data and redo
1747          * again, since implicitly, we invalidate previous checks here.
1748          *
1749          * Or, since we know how much we need to make read/writeable,
1750          * this can be done once at the program beginning for direct
1751          * access case. By this we overcome limitations of only current
1752          * headroom being accessible.
1753          */
1754         return bpf_try_make_writable(skb, len ? : skb_headlen(skb));
1755 }
1756
1757 static const struct bpf_func_proto bpf_skb_pull_data_proto = {
1758         .func           = bpf_skb_pull_data,
1759         .gpl_only       = false,
1760         .ret_type       = RET_INTEGER,
1761         .arg1_type      = ARG_PTR_TO_CTX,
1762         .arg2_type      = ARG_ANYTHING,
1763 };
1764
1765 BPF_CALL_5(bpf_l3_csum_replace, struct sk_buff *, skb, u32, offset,
1766            u64, from, u64, to, u64, flags)
1767 {
1768         __sum16 *ptr;
1769
1770         if (unlikely(flags & ~(BPF_F_HDR_FIELD_MASK)))
1771                 return -EINVAL;
1772         if (unlikely(offset > 0xffff || offset & 1))
1773                 return -EFAULT;
1774         if (unlikely(bpf_try_make_writable(skb, offset + sizeof(*ptr))))
1775                 return -EFAULT;
1776
1777         ptr = (__sum16 *)(skb->data + offset);
1778         switch (flags & BPF_F_HDR_FIELD_MASK) {
1779         case 0:
1780                 if (unlikely(from != 0))
1781                         return -EINVAL;
1782
1783                 csum_replace_by_diff(ptr, to);
1784                 break;
1785         case 2:
1786                 csum_replace2(ptr, from, to);
1787                 break;
1788         case 4:
1789                 csum_replace4(ptr, from, to);
1790                 break;
1791         default:
1792                 return -EINVAL;
1793         }
1794
1795         return 0;
1796 }
1797
1798 static const struct bpf_func_proto bpf_l3_csum_replace_proto = {
1799         .func           = bpf_l3_csum_replace,
1800         .gpl_only       = false,
1801         .ret_type       = RET_INTEGER,
1802         .arg1_type      = ARG_PTR_TO_CTX,
1803         .arg2_type      = ARG_ANYTHING,
1804         .arg3_type      = ARG_ANYTHING,
1805         .arg4_type      = ARG_ANYTHING,
1806         .arg5_type      = ARG_ANYTHING,
1807 };
1808
1809 BPF_CALL_5(bpf_l4_csum_replace, struct sk_buff *, skb, u32, offset,
1810            u64, from, u64, to, u64, flags)
1811 {
1812         bool is_pseudo = flags & BPF_F_PSEUDO_HDR;
1813         bool is_mmzero = flags & BPF_F_MARK_MANGLED_0;
1814         bool do_mforce = flags & BPF_F_MARK_ENFORCE;
1815         __sum16 *ptr;
1816
1817         if (unlikely(flags & ~(BPF_F_MARK_MANGLED_0 | BPF_F_MARK_ENFORCE |
1818                                BPF_F_PSEUDO_HDR | BPF_F_HDR_FIELD_MASK)))
1819                 return -EINVAL;
1820         if (unlikely(offset > 0xffff || offset & 1))
1821                 return -EFAULT;
1822         if (unlikely(bpf_try_make_writable(skb, offset + sizeof(*ptr))))
1823                 return -EFAULT;
1824
1825         ptr = (__sum16 *)(skb->data + offset);
1826         if (is_mmzero && !do_mforce && !*ptr)
1827                 return 0;
1828
1829         switch (flags & BPF_F_HDR_FIELD_MASK) {
1830         case 0:
1831                 if (unlikely(from != 0))
1832                         return -EINVAL;
1833
1834                 inet_proto_csum_replace_by_diff(ptr, skb, to, is_pseudo);
1835                 break;
1836         case 2:
1837                 inet_proto_csum_replace2(ptr, skb, from, to, is_pseudo);
1838                 break;
1839         case 4:
1840                 inet_proto_csum_replace4(ptr, skb, from, to, is_pseudo);
1841                 break;
1842         default:
1843                 return -EINVAL;
1844         }
1845
1846         if (is_mmzero && !*ptr)
1847                 *ptr = CSUM_MANGLED_0;
1848         return 0;
1849 }
1850
1851 static const struct bpf_func_proto bpf_l4_csum_replace_proto = {
1852         .func           = bpf_l4_csum_replace,
1853         .gpl_only       = false,
1854         .ret_type       = RET_INTEGER,
1855         .arg1_type      = ARG_PTR_TO_CTX,
1856         .arg2_type      = ARG_ANYTHING,
1857         .arg3_type      = ARG_ANYTHING,
1858         .arg4_type      = ARG_ANYTHING,
1859         .arg5_type      = ARG_ANYTHING,
1860 };
1861
1862 BPF_CALL_5(bpf_csum_diff, __be32 *, from, u32, from_size,
1863            __be32 *, to, u32, to_size, __wsum, seed)
1864 {
1865         struct bpf_scratchpad *sp = this_cpu_ptr(&bpf_sp);
1866         u32 diff_size = from_size + to_size;
1867         int i, j = 0;
1868
1869         /* This is quite flexible, some examples:
1870          *
1871          * from_size == 0, to_size > 0,  seed := csum --> pushing data
1872          * from_size > 0,  to_size == 0, seed := csum --> pulling data
1873          * from_size > 0,  to_size > 0,  seed := 0    --> diffing data
1874          *
1875          * Even for diffing, from_size and to_size don't need to be equal.
1876          */
1877         if (unlikely(((from_size | to_size) & (sizeof(__be32) - 1)) ||
1878                      diff_size > sizeof(sp->diff)))
1879                 return -EINVAL;
1880
1881         for (i = 0; i < from_size / sizeof(__be32); i++, j++)
1882                 sp->diff[j] = ~from[i];
1883         for (i = 0; i <   to_size / sizeof(__be32); i++, j++)
1884                 sp->diff[j] = to[i];
1885
1886         return csum_partial(sp->diff, diff_size, seed);
1887 }
1888
1889 static const struct bpf_func_proto bpf_csum_diff_proto = {
1890         .func           = bpf_csum_diff,
1891         .gpl_only       = false,
1892         .pkt_access     = true,
1893         .ret_type       = RET_INTEGER,
1894         .arg1_type      = ARG_PTR_TO_MEM_OR_NULL,
1895         .arg2_type      = ARG_CONST_SIZE_OR_ZERO,
1896         .arg3_type      = ARG_PTR_TO_MEM_OR_NULL,
1897         .arg4_type      = ARG_CONST_SIZE_OR_ZERO,
1898         .arg5_type      = ARG_ANYTHING,
1899 };
1900
1901 BPF_CALL_2(bpf_csum_update, struct sk_buff *, skb, __wsum, csum)
1902 {
1903         /* The interface is to be used in combination with bpf_csum_diff()
1904          * for direct packet writes. csum rotation for alignment as well
1905          * as emulating csum_sub() can be done from the eBPF program.
1906          */
1907         if (skb->ip_summed == CHECKSUM_COMPLETE)
1908                 return (skb->csum = csum_add(skb->csum, csum));
1909
1910         return -ENOTSUPP;
1911 }
1912
1913 static const struct bpf_func_proto bpf_csum_update_proto = {
1914         .func           = bpf_csum_update,
1915         .gpl_only       = false,
1916         .ret_type       = RET_INTEGER,
1917         .arg1_type      = ARG_PTR_TO_CTX,
1918         .arg2_type      = ARG_ANYTHING,
1919 };
1920
1921 static inline int __bpf_rx_skb(struct net_device *dev, struct sk_buff *skb)
1922 {
1923         return dev_forward_skb(dev, skb);
1924 }
1925
1926 static inline int __bpf_rx_skb_no_mac(struct net_device *dev,
1927                                       struct sk_buff *skb)
1928 {
1929         int ret = ____dev_forward_skb(dev, skb);
1930
1931         if (likely(!ret)) {
1932                 skb->dev = dev;
1933                 ret = netif_rx(skb);
1934         }
1935
1936         return ret;
1937 }
1938
1939 static inline int __bpf_tx_skb(struct net_device *dev, struct sk_buff *skb)
1940 {
1941         int ret;
1942
1943         if (unlikely(__this_cpu_read(xmit_recursion) > XMIT_RECURSION_LIMIT)) {
1944                 net_crit_ratelimited("bpf: recursion limit reached on datapath, buggy bpf program?\n");
1945                 kfree_skb(skb);
1946                 return -ENETDOWN;
1947         }
1948
1949         skb->dev = dev;
1950
1951         __this_cpu_inc(xmit_recursion);
1952         ret = dev_queue_xmit(skb);
1953         __this_cpu_dec(xmit_recursion);
1954
1955         return ret;
1956 }
1957
1958 static int __bpf_redirect_no_mac(struct sk_buff *skb, struct net_device *dev,
1959                                  u32 flags)
1960 {
1961         /* skb->mac_len is not set on normal egress */
1962         unsigned int mlen = skb->network_header - skb->mac_header;
1963
1964         __skb_pull(skb, mlen);
1965
1966         /* At ingress, the mac header has already been pulled once.
1967          * At egress, skb_pospull_rcsum has to be done in case that
1968          * the skb is originated from ingress (i.e. a forwarded skb)
1969          * to ensure that rcsum starts at net header.
1970          */
1971         if (!skb_at_tc_ingress(skb))
1972                 skb_postpull_rcsum(skb, skb_mac_header(skb), mlen);
1973         skb_pop_mac_header(skb);
1974         skb_reset_mac_len(skb);
1975         return flags & BPF_F_INGRESS ?
1976                __bpf_rx_skb_no_mac(dev, skb) : __bpf_tx_skb(dev, skb);
1977 }
1978
1979 static int __bpf_redirect_common(struct sk_buff *skb, struct net_device *dev,
1980                                  u32 flags)
1981 {
1982         /* Verify that a link layer header is carried */
1983         if (unlikely(skb->mac_header >= skb->network_header)) {
1984                 kfree_skb(skb);
1985                 return -ERANGE;
1986         }
1987
1988         bpf_push_mac_rcsum(skb);
1989         return flags & BPF_F_INGRESS ?
1990                __bpf_rx_skb(dev, skb) : __bpf_tx_skb(dev, skb);
1991 }
1992
1993 static int __bpf_redirect(struct sk_buff *skb, struct net_device *dev,
1994                           u32 flags)
1995 {
1996         if (dev_is_mac_header_xmit(dev))
1997                 return __bpf_redirect_common(skb, dev, flags);
1998         else
1999                 return __bpf_redirect_no_mac(skb, dev, flags);
2000 }
2001
2002 BPF_CALL_3(bpf_clone_redirect, struct sk_buff *, skb, u32, ifindex, u64, flags)
2003 {
2004         struct net_device *dev;
2005         struct sk_buff *clone;
2006         int ret;
2007
2008         if (unlikely(flags & ~(BPF_F_INGRESS)))
2009                 return -EINVAL;
2010
2011         dev = dev_get_by_index_rcu(dev_net(skb->dev), ifindex);
2012         if (unlikely(!dev))
2013                 return -EINVAL;
2014
2015         clone = skb_clone(skb, GFP_ATOMIC);
2016         if (unlikely(!clone))
2017                 return -ENOMEM;
2018
2019         /* For direct write, we need to keep the invariant that the skbs
2020          * we're dealing with need to be uncloned. Should uncloning fail
2021          * here, we need to free the just generated clone to unclone once
2022          * again.
2023          */
2024         ret = bpf_try_make_head_writable(skb);
2025         if (unlikely(ret)) {
2026                 kfree_skb(clone);
2027                 return -ENOMEM;
2028         }
2029
2030         return __bpf_redirect(clone, dev, flags);
2031 }
2032
2033 static const struct bpf_func_proto bpf_clone_redirect_proto = {
2034         .func           = bpf_clone_redirect,
2035         .gpl_only       = false,
2036         .ret_type       = RET_INTEGER,
2037         .arg1_type      = ARG_PTR_TO_CTX,
2038         .arg2_type      = ARG_ANYTHING,
2039         .arg3_type      = ARG_ANYTHING,
2040 };
2041
2042 struct redirect_info {
2043         u32 ifindex;
2044         u32 flags;
2045         struct bpf_map *map;
2046         struct bpf_map *map_to_flush;
2047         unsigned long   map_owner;
2048 };
2049
2050 static DEFINE_PER_CPU(struct redirect_info, redirect_info);
2051
2052 BPF_CALL_2(bpf_redirect, u32, ifindex, u64, flags)
2053 {
2054         struct redirect_info *ri = this_cpu_ptr(&redirect_info);
2055
2056         if (unlikely(flags & ~(BPF_F_INGRESS)))
2057                 return TC_ACT_SHOT;
2058
2059         ri->ifindex = ifindex;
2060         ri->flags = flags;
2061
2062         return TC_ACT_REDIRECT;
2063 }
2064
2065 int skb_do_redirect(struct sk_buff *skb)
2066 {
2067         struct redirect_info *ri = this_cpu_ptr(&redirect_info);
2068         struct net_device *dev;
2069
2070         dev = dev_get_by_index_rcu(dev_net(skb->dev), ri->ifindex);
2071         ri->ifindex = 0;
2072         if (unlikely(!dev)) {
2073                 kfree_skb(skb);
2074                 return -EINVAL;
2075         }
2076
2077         return __bpf_redirect(skb, dev, ri->flags);
2078 }
2079
2080 static const struct bpf_func_proto bpf_redirect_proto = {
2081         .func           = bpf_redirect,
2082         .gpl_only       = false,
2083         .ret_type       = RET_INTEGER,
2084         .arg1_type      = ARG_ANYTHING,
2085         .arg2_type      = ARG_ANYTHING,
2086 };
2087
2088 BPF_CALL_4(bpf_sk_redirect_hash, struct sk_buff *, skb,
2089            struct bpf_map *, map, void *, key, u64, flags)
2090 {
2091         struct tcp_skb_cb *tcb = TCP_SKB_CB(skb);
2092
2093         /* If user passes invalid input drop the packet. */
2094         if (unlikely(flags & ~(BPF_F_INGRESS)))
2095                 return SK_DROP;
2096
2097         tcb->bpf.flags = flags;
2098         tcb->bpf.sk_redir = __sock_hash_lookup_elem(map, key);
2099         if (!tcb->bpf.sk_redir)
2100                 return SK_DROP;
2101
2102         return SK_PASS;
2103 }
2104
2105 static const struct bpf_func_proto bpf_sk_redirect_hash_proto = {
2106         .func           = bpf_sk_redirect_hash,
2107         .gpl_only       = false,
2108         .ret_type       = RET_INTEGER,
2109         .arg1_type      = ARG_PTR_TO_CTX,
2110         .arg2_type      = ARG_CONST_MAP_PTR,
2111         .arg3_type      = ARG_PTR_TO_MAP_KEY,
2112         .arg4_type      = ARG_ANYTHING,
2113 };
2114
2115 BPF_CALL_4(bpf_sk_redirect_map, struct sk_buff *, skb,
2116            struct bpf_map *, map, u32, key, u64, flags)
2117 {
2118         struct tcp_skb_cb *tcb = TCP_SKB_CB(skb);
2119
2120         /* If user passes invalid input drop the packet. */
2121         if (unlikely(flags & ~(BPF_F_INGRESS)))
2122                 return SK_DROP;
2123
2124         tcb->bpf.flags = flags;
2125         tcb->bpf.sk_redir = __sock_map_lookup_elem(map, key);
2126         if (!tcb->bpf.sk_redir)
2127                 return SK_DROP;
2128
2129         return SK_PASS;
2130 }
2131
2132 struct sock *do_sk_redirect_map(struct sk_buff *skb)
2133 {
2134         struct tcp_skb_cb *tcb = TCP_SKB_CB(skb);
2135
2136         return tcb->bpf.sk_redir;
2137 }
2138
2139 static const struct bpf_func_proto bpf_sk_redirect_map_proto = {
2140         .func           = bpf_sk_redirect_map,
2141         .gpl_only       = false,
2142         .ret_type       = RET_INTEGER,
2143         .arg1_type      = ARG_PTR_TO_CTX,
2144         .arg2_type      = ARG_CONST_MAP_PTR,
2145         .arg3_type      = ARG_ANYTHING,
2146         .arg4_type      = ARG_ANYTHING,
2147 };
2148
2149 BPF_CALL_4(bpf_msg_redirect_hash, struct sk_msg_buff *, msg,
2150            struct bpf_map *, map, void *, key, u64, flags)
2151 {
2152         /* If user passes invalid input drop the packet. */
2153         if (unlikely(flags & ~(BPF_F_INGRESS)))
2154                 return SK_DROP;
2155
2156         msg->flags = flags;
2157         msg->sk_redir = __sock_hash_lookup_elem(map, key);
2158         if (!msg->sk_redir)
2159                 return SK_DROP;
2160
2161         return SK_PASS;
2162 }
2163
2164 static const struct bpf_func_proto bpf_msg_redirect_hash_proto = {
2165         .func           = bpf_msg_redirect_hash,
2166         .gpl_only       = false,
2167         .ret_type       = RET_INTEGER,
2168         .arg1_type      = ARG_PTR_TO_CTX,
2169         .arg2_type      = ARG_CONST_MAP_PTR,
2170         .arg3_type      = ARG_PTR_TO_MAP_KEY,
2171         .arg4_type      = ARG_ANYTHING,
2172 };
2173
2174 BPF_CALL_4(bpf_msg_redirect_map, struct sk_msg_buff *, msg,
2175            struct bpf_map *, map, u32, key, u64, flags)
2176 {
2177         /* If user passes invalid input drop the packet. */
2178         if (unlikely(flags & ~(BPF_F_INGRESS)))
2179                 return SK_DROP;
2180
2181         msg->flags = flags;
2182         msg->sk_redir = __sock_map_lookup_elem(map, key);
2183         if (!msg->sk_redir)
2184                 return SK_DROP;
2185
2186         return SK_PASS;
2187 }
2188
2189 struct sock *do_msg_redirect_map(struct sk_msg_buff *msg)
2190 {
2191         return msg->sk_redir;
2192 }
2193
2194 static const struct bpf_func_proto bpf_msg_redirect_map_proto = {
2195         .func           = bpf_msg_redirect_map,
2196         .gpl_only       = false,
2197         .ret_type       = RET_INTEGER,
2198         .arg1_type      = ARG_PTR_TO_CTX,
2199         .arg2_type      = ARG_CONST_MAP_PTR,
2200         .arg3_type      = ARG_ANYTHING,
2201         .arg4_type      = ARG_ANYTHING,
2202 };
2203
2204 BPF_CALL_2(bpf_msg_apply_bytes, struct sk_msg_buff *, msg, u32, bytes)
2205 {
2206         msg->apply_bytes = bytes;
2207         return 0;
2208 }
2209
2210 static const struct bpf_func_proto bpf_msg_apply_bytes_proto = {
2211         .func           = bpf_msg_apply_bytes,
2212         .gpl_only       = false,
2213         .ret_type       = RET_INTEGER,
2214         .arg1_type      = ARG_PTR_TO_CTX,
2215         .arg2_type      = ARG_ANYTHING,
2216 };
2217
2218 BPF_CALL_2(bpf_msg_cork_bytes, struct sk_msg_buff *, msg, u32, bytes)
2219 {
2220         msg->cork_bytes = bytes;
2221         return 0;
2222 }
2223
2224 static const struct bpf_func_proto bpf_msg_cork_bytes_proto = {
2225         .func           = bpf_msg_cork_bytes,
2226         .gpl_only       = false,
2227         .ret_type       = RET_INTEGER,
2228         .arg1_type      = ARG_PTR_TO_CTX,
2229         .arg2_type      = ARG_ANYTHING,
2230 };
2231
2232 BPF_CALL_4(bpf_msg_pull_data,
2233            struct sk_msg_buff *, msg, u32, start, u32, end, u64, flags)
2234 {
2235         unsigned int len = 0, offset = 0, copy = 0;
2236         struct scatterlist *sg = msg->sg_data;
2237         int first_sg, last_sg, i, shift;
2238         unsigned char *p, *to, *from;
2239         int bytes = end - start;
2240         struct page *page;
2241
2242         if (unlikely(flags || end <= start))
2243                 return -EINVAL;
2244
2245         /* First find the starting scatterlist element */
2246         i = msg->sg_start;
2247         do {
2248                 len = sg[i].length;
2249                 offset += len;
2250                 if (start < offset + len)
2251                         break;
2252                 i++;
2253                 if (i == MAX_SKB_FRAGS)
2254                         i = 0;
2255         } while (i != msg->sg_end);
2256
2257         if (unlikely(start >= offset + len))
2258                 return -EINVAL;
2259
2260         if (!msg->sg_copy[i] && bytes <= len)
2261                 goto out;
2262
2263         first_sg = i;
2264
2265         /* At this point we need to linearize multiple scatterlist
2266          * elements or a single shared page. Either way we need to
2267          * copy into a linear buffer exclusively owned by BPF. Then
2268          * place the buffer in the scatterlist and fixup the original
2269          * entries by removing the entries now in the linear buffer
2270          * and shifting the remaining entries. For now we do not try
2271          * to copy partial entries to avoid complexity of running out
2272          * of sg_entry slots. The downside is reading a single byte
2273          * will copy the entire sg entry.
2274          */
2275         do {
2276                 copy += sg[i].length;
2277                 i++;
2278                 if (i == MAX_SKB_FRAGS)
2279                         i = 0;
2280                 if (bytes < copy)
2281                         break;
2282         } while (i != msg->sg_end);
2283         last_sg = i;
2284
2285         if (unlikely(copy < end - start))
2286                 return -EINVAL;
2287
2288         page = alloc_pages(__GFP_NOWARN | GFP_ATOMIC, get_order(copy));
2289         if (unlikely(!page))
2290                 return -ENOMEM;
2291         p = page_address(page);
2292         offset = 0;
2293
2294         i = first_sg;
2295         do {
2296                 from = sg_virt(&sg[i]);
2297                 len = sg[i].length;
2298                 to = p + offset;
2299
2300                 memcpy(to, from, len);
2301                 offset += len;
2302                 sg[i].length = 0;
2303                 put_page(sg_page(&sg[i]));
2304
2305                 i++;
2306                 if (i == MAX_SKB_FRAGS)
2307                         i = 0;
2308         } while (i != last_sg);
2309
2310         sg[first_sg].length = copy;
2311         sg_set_page(&sg[first_sg], page, copy, 0);
2312
2313         /* To repair sg ring we need to shift entries. If we only
2314          * had a single entry though we can just replace it and
2315          * be done. Otherwise walk the ring and shift the entries.
2316          */
2317         shift = last_sg - first_sg - 1;
2318         if (!shift)
2319                 goto out;
2320
2321         i = first_sg + 1;
2322         do {
2323                 int move_from;
2324
2325                 if (i + shift >= MAX_SKB_FRAGS)
2326                         move_from = i + shift - MAX_SKB_FRAGS;
2327                 else
2328                         move_from = i + shift;
2329
2330                 if (move_from == msg->sg_end)
2331                         break;
2332
2333                 sg[i] = sg[move_from];
2334                 sg[move_from].length = 0;
2335                 sg[move_from].page_link = 0;
2336                 sg[move_from].offset = 0;
2337
2338                 i++;
2339                 if (i == MAX_SKB_FRAGS)
2340                         i = 0;
2341         } while (1);
2342         msg->sg_end -= shift;
2343         if (msg->sg_end < 0)
2344                 msg->sg_end += MAX_SKB_FRAGS;
2345 out:
2346         msg->data = sg_virt(&sg[i]) + start - offset;
2347         msg->data_end = msg->data + bytes;
2348
2349         return 0;
2350 }
2351
2352 static const struct bpf_func_proto bpf_msg_pull_data_proto = {
2353         .func           = bpf_msg_pull_data,
2354         .gpl_only       = false,
2355         .ret_type       = RET_INTEGER,
2356         .arg1_type      = ARG_PTR_TO_CTX,
2357         .arg2_type      = ARG_ANYTHING,
2358         .arg3_type      = ARG_ANYTHING,
2359         .arg4_type      = ARG_ANYTHING,
2360 };
2361
2362 BPF_CALL_1(bpf_get_cgroup_classid, const struct sk_buff *, skb)
2363 {
2364         return task_get_classid(skb);
2365 }
2366
2367 static const struct bpf_func_proto bpf_get_cgroup_classid_proto = {
2368         .func           = bpf_get_cgroup_classid,
2369         .gpl_only       = false,
2370         .ret_type       = RET_INTEGER,
2371         .arg1_type      = ARG_PTR_TO_CTX,
2372 };
2373
2374 BPF_CALL_1(bpf_get_route_realm, const struct sk_buff *, skb)
2375 {
2376         return dst_tclassid(skb);
2377 }
2378
2379 static const struct bpf_func_proto bpf_get_route_realm_proto = {
2380         .func           = bpf_get_route_realm,
2381         .gpl_only       = false,
2382         .ret_type       = RET_INTEGER,
2383         .arg1_type      = ARG_PTR_TO_CTX,
2384 };
2385
2386 BPF_CALL_1(bpf_get_hash_recalc, struct sk_buff *, skb)
2387 {
2388         /* If skb_clear_hash() was called due to mangling, we can
2389          * trigger SW recalculation here. Later access to hash
2390          * can then use the inline skb->hash via context directly
2391          * instead of calling this helper again.
2392          */
2393         return skb_get_hash(skb);
2394 }
2395
2396 static const struct bpf_func_proto bpf_get_hash_recalc_proto = {
2397         .func           = bpf_get_hash_recalc,
2398         .gpl_only       = false,
2399         .ret_type       = RET_INTEGER,
2400         .arg1_type      = ARG_PTR_TO_CTX,
2401 };
2402
2403 BPF_CALL_1(bpf_set_hash_invalid, struct sk_buff *, skb)
2404 {
2405         /* After all direct packet write, this can be used once for
2406          * triggering a lazy recalc on next skb_get_hash() invocation.
2407          */
2408         skb_clear_hash(skb);
2409         return 0;
2410 }
2411
2412 static const struct bpf_func_proto bpf_set_hash_invalid_proto = {
2413         .func           = bpf_set_hash_invalid,
2414         .gpl_only       = false,
2415         .ret_type       = RET_INTEGER,
2416         .arg1_type      = ARG_PTR_TO_CTX,
2417 };
2418
2419 BPF_CALL_2(bpf_set_hash, struct sk_buff *, skb, u32, hash)
2420 {
2421         /* Set user specified hash as L4(+), so that it gets returned
2422          * on skb_get_hash() call unless BPF prog later on triggers a
2423          * skb_clear_hash().
2424          */
2425         __skb_set_sw_hash(skb, hash, true);
2426         return 0;
2427 }
2428
2429 static const struct bpf_func_proto bpf_set_hash_proto = {
2430         .func           = bpf_set_hash,
2431         .gpl_only       = false,
2432         .ret_type       = RET_INTEGER,
2433         .arg1_type      = ARG_PTR_TO_CTX,
2434         .arg2_type      = ARG_ANYTHING,
2435 };
2436
2437 BPF_CALL_3(bpf_skb_vlan_push, struct sk_buff *, skb, __be16, vlan_proto,
2438            u16, vlan_tci)
2439 {
2440         int ret;
2441
2442         if (unlikely(vlan_proto != htons(ETH_P_8021Q) &&
2443                      vlan_proto != htons(ETH_P_8021AD)))
2444                 vlan_proto = htons(ETH_P_8021Q);
2445
2446         bpf_push_mac_rcsum(skb);
2447         ret = skb_vlan_push(skb, vlan_proto, vlan_tci);
2448         bpf_pull_mac_rcsum(skb);
2449
2450         bpf_compute_data_pointers(skb);
2451         return ret;
2452 }
2453
2454 static const struct bpf_func_proto bpf_skb_vlan_push_proto = {
2455         .func           = bpf_skb_vlan_push,
2456         .gpl_only       = false,
2457         .ret_type       = RET_INTEGER,
2458         .arg1_type      = ARG_PTR_TO_CTX,
2459         .arg2_type      = ARG_ANYTHING,
2460         .arg3_type      = ARG_ANYTHING,
2461 };
2462
2463 BPF_CALL_1(bpf_skb_vlan_pop, struct sk_buff *, skb)
2464 {
2465         int ret;
2466
2467         bpf_push_mac_rcsum(skb);
2468         ret = skb_vlan_pop(skb);
2469         bpf_pull_mac_rcsum(skb);
2470
2471         bpf_compute_data_pointers(skb);
2472         return ret;
2473 }
2474
2475 static const struct bpf_func_proto bpf_skb_vlan_pop_proto = {
2476         .func           = bpf_skb_vlan_pop,
2477         .gpl_only       = false,
2478         .ret_type       = RET_INTEGER,
2479         .arg1_type      = ARG_PTR_TO_CTX,
2480 };
2481
2482 static int bpf_skb_generic_push(struct sk_buff *skb, u32 off, u32 len)
2483 {
2484         /* Caller already did skb_cow() with len as headroom,
2485          * so no need to do it here.
2486          */
2487         skb_push(skb, len);
2488         memmove(skb->data, skb->data + len, off);
2489         memset(skb->data + off, 0, len);
2490
2491         /* No skb_postpush_rcsum(skb, skb->data + off, len)
2492          * needed here as it does not change the skb->csum
2493          * result for checksum complete when summing over
2494          * zeroed blocks.
2495          */
2496         return 0;
2497 }
2498
2499 static int bpf_skb_generic_pop(struct sk_buff *skb, u32 off, u32 len)
2500 {
2501         /* skb_ensure_writable() is not needed here, as we're
2502          * already working on an uncloned skb.
2503          */
2504         if (unlikely(!pskb_may_pull(skb, off + len)))
2505                 return -ENOMEM;
2506
2507         skb_postpull_rcsum(skb, skb->data + off, len);
2508         memmove(skb->data + len, skb->data, off);
2509         __skb_pull(skb, len);
2510
2511         return 0;
2512 }
2513
2514 static int bpf_skb_net_hdr_push(struct sk_buff *skb, u32 off, u32 len)
2515 {
2516         bool trans_same = skb->transport_header == skb->network_header;
2517         int ret;
2518
2519         /* There's no need for __skb_push()/__skb_pull() pair to
2520          * get to the start of the mac header as we're guaranteed
2521          * to always start from here under eBPF.
2522          */
2523         ret = bpf_skb_generic_push(skb, off, len);
2524         if (likely(!ret)) {
2525                 skb->mac_header -= len;
2526                 skb->network_header -= len;
2527                 if (trans_same)
2528                         skb->transport_header = skb->network_header;
2529         }
2530
2531         return ret;
2532 }
2533
2534 static int bpf_skb_net_hdr_pop(struct sk_buff *skb, u32 off, u32 len)
2535 {
2536         bool trans_same = skb->transport_header == skb->network_header;
2537         int ret;
2538
2539         /* Same here, __skb_push()/__skb_pull() pair not needed. */
2540         ret = bpf_skb_generic_pop(skb, off, len);
2541         if (likely(!ret)) {
2542                 skb->mac_header += len;
2543                 skb->network_header += len;
2544                 if (trans_same)
2545                         skb->transport_header = skb->network_header;
2546         }
2547
2548         return ret;
2549 }
2550
2551 static int bpf_skb_proto_4_to_6(struct sk_buff *skb)
2552 {
2553         const u32 len_diff = sizeof(struct ipv6hdr) - sizeof(struct iphdr);
2554         u32 off = skb_mac_header_len(skb);
2555         int ret;
2556
2557         /* SCTP uses GSO_BY_FRAGS, thus cannot adjust it. */
2558         if (skb_is_gso(skb) && unlikely(skb_is_gso_sctp(skb)))
2559                 return -ENOTSUPP;
2560
2561         ret = skb_cow(skb, len_diff);
2562         if (unlikely(ret < 0))
2563                 return ret;
2564
2565         ret = bpf_skb_net_hdr_push(skb, off, len_diff);
2566         if (unlikely(ret < 0))
2567                 return ret;
2568
2569         if (skb_is_gso(skb)) {
2570                 struct skb_shared_info *shinfo = skb_shinfo(skb);
2571
2572                 /* SKB_GSO_TCPV4 needs to be changed into
2573                  * SKB_GSO_TCPV6.
2574                  */
2575                 if (shinfo->gso_type & SKB_GSO_TCPV4) {
2576                         shinfo->gso_type &= ~SKB_GSO_TCPV4;
2577                         shinfo->gso_type |=  SKB_GSO_TCPV6;
2578                 }
2579
2580                 /* Due to IPv6 header, MSS needs to be downgraded. */
2581                 skb_decrease_gso_size(shinfo, len_diff);
2582                 /* Header must be checked, and gso_segs recomputed. */
2583                 shinfo->gso_type |= SKB_GSO_DODGY;
2584                 shinfo->gso_segs = 0;
2585         }
2586
2587         skb->protocol = htons(ETH_P_IPV6);
2588         skb_clear_hash(skb);
2589
2590         return 0;
2591 }
2592
2593 static int bpf_skb_proto_6_to_4(struct sk_buff *skb)
2594 {
2595         const u32 len_diff = sizeof(struct ipv6hdr) - sizeof(struct iphdr);
2596         u32 off = skb_mac_header_len(skb);
2597         int ret;
2598
2599         /* SCTP uses GSO_BY_FRAGS, thus cannot adjust it. */
2600         if (skb_is_gso(skb) && unlikely(skb_is_gso_sctp(skb)))
2601                 return -ENOTSUPP;
2602
2603         ret = skb_unclone(skb, GFP_ATOMIC);
2604         if (unlikely(ret < 0))
2605                 return ret;
2606
2607         ret = bpf_skb_net_hdr_pop(skb, off, len_diff);
2608         if (unlikely(ret < 0))
2609                 return ret;
2610
2611         if (skb_is_gso(skb)) {
2612                 struct skb_shared_info *shinfo = skb_shinfo(skb);
2613
2614                 /* SKB_GSO_TCPV6 needs to be changed into
2615                  * SKB_GSO_TCPV4.
2616                  */
2617                 if (shinfo->gso_type & SKB_GSO_TCPV6) {
2618                         shinfo->gso_type &= ~SKB_GSO_TCPV6;
2619                         shinfo->gso_type |=  SKB_GSO_TCPV4;
2620                 }
2621
2622                 /* Due to IPv4 header, MSS can be upgraded. */
2623                 skb_increase_gso_size(shinfo, len_diff);
2624                 /* Header must be checked, and gso_segs recomputed. */
2625                 shinfo->gso_type |= SKB_GSO_DODGY;
2626                 shinfo->gso_segs = 0;
2627         }
2628
2629         skb->protocol = htons(ETH_P_IP);
2630         skb_clear_hash(skb);
2631
2632         return 0;
2633 }
2634
2635 static int bpf_skb_proto_xlat(struct sk_buff *skb, __be16 to_proto)
2636 {
2637         __be16 from_proto = skb->protocol;
2638
2639         if (from_proto == htons(ETH_P_IP) &&
2640               to_proto == htons(ETH_P_IPV6))
2641                 return bpf_skb_proto_4_to_6(skb);
2642
2643         if (from_proto == htons(ETH_P_IPV6) &&
2644               to_proto == htons(ETH_P_IP))
2645                 return bpf_skb_proto_6_to_4(skb);
2646
2647         return -ENOTSUPP;
2648 }
2649
2650 BPF_CALL_3(bpf_skb_change_proto, struct sk_buff *, skb, __be16, proto,
2651            u64, flags)
2652 {
2653         int ret;
2654
2655         if (unlikely(flags))
2656                 return -EINVAL;
2657
2658         /* General idea is that this helper does the basic groundwork
2659          * needed for changing the protocol, and eBPF program fills the
2660          * rest through bpf_skb_store_bytes(), bpf_lX_csum_replace()
2661          * and other helpers, rather than passing a raw buffer here.
2662          *
2663          * The rationale is to keep this minimal and without a need to
2664          * deal with raw packet data. F.e. even if we would pass buffers
2665          * here, the program still needs to call the bpf_lX_csum_replace()
2666          * helpers anyway. Plus, this way we keep also separation of
2667          * concerns, since f.e. bpf_skb_store_bytes() should only take
2668          * care of stores.
2669          *
2670          * Currently, additional options and extension header space are
2671          * not supported, but flags register is reserved so we can adapt
2672          * that. For offloads, we mark packet as dodgy, so that headers
2673          * need to be verified first.
2674          */
2675         ret = bpf_skb_proto_xlat(skb, proto);
2676         bpf_compute_data_pointers(skb);
2677         return ret;
2678 }
2679
2680 static const struct bpf_func_proto bpf_skb_change_proto_proto = {
2681         .func           = bpf_skb_change_proto,
2682         .gpl_only       = false,
2683         .ret_type       = RET_INTEGER,
2684         .arg1_type      = ARG_PTR_TO_CTX,
2685         .arg2_type      = ARG_ANYTHING,
2686         .arg3_type      = ARG_ANYTHING,
2687 };
2688
2689 BPF_CALL_2(bpf_skb_change_type, struct sk_buff *, skb, u32, pkt_type)
2690 {
2691         /* We only allow a restricted subset to be changed for now. */
2692         if (unlikely(!skb_pkt_type_ok(skb->pkt_type) ||
2693                      !skb_pkt_type_ok(pkt_type)))
2694                 return -EINVAL;
2695
2696         skb->pkt_type = pkt_type;
2697         return 0;
2698 }
2699
2700 static const struct bpf_func_proto bpf_skb_change_type_proto = {
2701         .func           = bpf_skb_change_type,
2702         .gpl_only       = false,
2703         .ret_type       = RET_INTEGER,
2704         .arg1_type      = ARG_PTR_TO_CTX,
2705         .arg2_type      = ARG_ANYTHING,
2706 };
2707
2708 static u32 bpf_skb_net_base_len(const struct sk_buff *skb)
2709 {
2710         switch (skb->protocol) {
2711         case htons(ETH_P_IP):
2712                 return sizeof(struct iphdr);
2713         case htons(ETH_P_IPV6):
2714                 return sizeof(struct ipv6hdr);
2715         default:
2716                 return ~0U;
2717         }
2718 }
2719
2720 static int bpf_skb_net_grow(struct sk_buff *skb, u32 len_diff)
2721 {
2722         u32 off = skb_mac_header_len(skb) + bpf_skb_net_base_len(skb);
2723         int ret;
2724
2725         /* SCTP uses GSO_BY_FRAGS, thus cannot adjust it. */
2726         if (skb_is_gso(skb) && unlikely(skb_is_gso_sctp(skb)))
2727                 return -ENOTSUPP;
2728
2729         ret = skb_cow(skb, len_diff);
2730         if (unlikely(ret < 0))
2731                 return ret;
2732
2733         ret = bpf_skb_net_hdr_push(skb, off, len_diff);
2734         if (unlikely(ret < 0))
2735                 return ret;
2736
2737         if (skb_is_gso(skb)) {
2738                 struct skb_shared_info *shinfo = skb_shinfo(skb);
2739
2740                 /* Due to header grow, MSS needs to be downgraded. */
2741                 skb_decrease_gso_size(shinfo, len_diff);
2742                 /* Header must be checked, and gso_segs recomputed. */
2743                 shinfo->gso_type |= SKB_GSO_DODGY;
2744                 shinfo->gso_segs = 0;
2745         }
2746
2747         return 0;
2748 }
2749
2750 static int bpf_skb_net_shrink(struct sk_buff *skb, u32 len_diff)
2751 {
2752         u32 off = skb_mac_header_len(skb) + bpf_skb_net_base_len(skb);
2753         int ret;
2754
2755         /* SCTP uses GSO_BY_FRAGS, thus cannot adjust it. */
2756         if (skb_is_gso(skb) && unlikely(skb_is_gso_sctp(skb)))
2757                 return -ENOTSUPP;
2758
2759         ret = skb_unclone(skb, GFP_ATOMIC);
2760         if (unlikely(ret < 0))
2761                 return ret;
2762
2763         ret = bpf_skb_net_hdr_pop(skb, off, len_diff);
2764         if (unlikely(ret < 0))
2765                 return ret;
2766
2767         if (skb_is_gso(skb)) {
2768                 struct skb_shared_info *shinfo = skb_shinfo(skb);
2769
2770                 /* Due to header shrink, MSS can be upgraded. */
2771                 skb_increase_gso_size(shinfo, len_diff);
2772                 /* Header must be checked, and gso_segs recomputed. */
2773                 shinfo->gso_type |= SKB_GSO_DODGY;
2774                 shinfo->gso_segs = 0;
2775         }
2776
2777         return 0;
2778 }
2779
2780 static u32 __bpf_skb_max_len(const struct sk_buff *skb)
2781 {
2782         return skb->dev->mtu + skb->dev->hard_header_len;
2783 }
2784
2785 static int bpf_skb_adjust_net(struct sk_buff *skb, s32 len_diff)
2786 {
2787         bool trans_same = skb->transport_header == skb->network_header;
2788         u32 len_cur, len_diff_abs = abs(len_diff);
2789         u32 len_min = bpf_skb_net_base_len(skb);
2790         u32 len_max = __bpf_skb_max_len(skb);
2791         __be16 proto = skb->protocol;
2792         bool shrink = len_diff < 0;
2793         int ret;
2794
2795         if (unlikely(len_diff_abs > 0xfffU))
2796                 return -EFAULT;
2797         if (unlikely(proto != htons(ETH_P_IP) &&
2798                      proto != htons(ETH_P_IPV6)))
2799                 return -ENOTSUPP;
2800
2801         len_cur = skb->len - skb_network_offset(skb);
2802         if (skb_transport_header_was_set(skb) && !trans_same)
2803                 len_cur = skb_network_header_len(skb);
2804         if ((shrink && (len_diff_abs >= len_cur ||
2805                         len_cur - len_diff_abs < len_min)) ||
2806             (!shrink && (skb->len + len_diff_abs > len_max &&
2807                          !skb_is_gso(skb))))
2808                 return -ENOTSUPP;
2809
2810         ret = shrink ? bpf_skb_net_shrink(skb, len_diff_abs) :
2811                        bpf_skb_net_grow(skb, len_diff_abs);
2812
2813         bpf_compute_data_pointers(skb);
2814         return ret;
2815 }
2816
2817 BPF_CALL_4(bpf_skb_adjust_room, struct sk_buff *, skb, s32, len_diff,
2818            u32, mode, u64, flags)
2819 {
2820         if (unlikely(flags))
2821                 return -EINVAL;
2822         if (likely(mode == BPF_ADJ_ROOM_NET))
2823                 return bpf_skb_adjust_net(skb, len_diff);
2824
2825         return -ENOTSUPP;
2826 }
2827
2828 static const struct bpf_func_proto bpf_skb_adjust_room_proto = {
2829         .func           = bpf_skb_adjust_room,
2830         .gpl_only       = false,
2831         .ret_type       = RET_INTEGER,
2832         .arg1_type      = ARG_PTR_TO_CTX,
2833         .arg2_type      = ARG_ANYTHING,
2834         .arg3_type      = ARG_ANYTHING,
2835         .arg4_type      = ARG_ANYTHING,
2836 };
2837
2838 static u32 __bpf_skb_min_len(const struct sk_buff *skb)
2839 {
2840         u32 min_len = skb_network_offset(skb);
2841
2842         if (skb_transport_header_was_set(skb))
2843                 min_len = skb_transport_offset(skb);
2844         if (skb->ip_summed == CHECKSUM_PARTIAL)
2845                 min_len = skb_checksum_start_offset(skb) +
2846                           skb->csum_offset + sizeof(__sum16);
2847         return min_len;
2848 }
2849
2850 static int bpf_skb_grow_rcsum(struct sk_buff *skb, unsigned int new_len)
2851 {
2852         unsigned int old_len = skb->len;
2853         int ret;
2854
2855         ret = __skb_grow_rcsum(skb, new_len);
2856         if (!ret)
2857                 memset(skb->data + old_len, 0, new_len - old_len);
2858         return ret;
2859 }
2860
2861 static int bpf_skb_trim_rcsum(struct sk_buff *skb, unsigned int new_len)
2862 {
2863         return __skb_trim_rcsum(skb, new_len);
2864 }
2865
2866 BPF_CALL_3(bpf_skb_change_tail, struct sk_buff *, skb, u32, new_len,
2867            u64, flags)
2868 {
2869         u32 max_len = __bpf_skb_max_len(skb);
2870         u32 min_len = __bpf_skb_min_len(skb);
2871         int ret;
2872
2873         if (unlikely(flags || new_len > max_len || new_len < min_len))
2874                 return -EINVAL;
2875         if (skb->encapsulation)
2876                 return -ENOTSUPP;
2877
2878         /* The basic idea of this helper is that it's performing the
2879          * needed work to either grow or trim an skb, and eBPF program
2880          * rewrites the rest via helpers like bpf_skb_store_bytes(),
2881          * bpf_lX_csum_replace() and others rather than passing a raw
2882          * buffer here. This one is a slow path helper and intended
2883          * for replies with control messages.
2884          *
2885          * Like in bpf_skb_change_proto(), we want to keep this rather
2886          * minimal and without protocol specifics so that we are able
2887          * to separate concerns as in bpf_skb_store_bytes() should only
2888          * be the one responsible for writing buffers.
2889          *
2890          * It's really expected to be a slow path operation here for
2891          * control message replies, so we're implicitly linearizing,
2892          * uncloning and drop offloads from the skb by this.
2893          */
2894         ret = __bpf_try_make_writable(skb, skb->len);
2895         if (!ret) {
2896                 if (new_len > skb->len)
2897                         ret = bpf_skb_grow_rcsum(skb, new_len);
2898                 else if (new_len < skb->len)
2899                         ret = bpf_skb_trim_rcsum(skb, new_len);
2900                 if (!ret && skb_is_gso(skb))
2901                         skb_gso_reset(skb);
2902         }
2903
2904         bpf_compute_data_pointers(skb);
2905         return ret;
2906 }
2907
2908 static const struct bpf_func_proto bpf_skb_change_tail_proto = {
2909         .func           = bpf_skb_change_tail,
2910         .gpl_only       = false,
2911         .ret_type       = RET_INTEGER,
2912         .arg1_type      = ARG_PTR_TO_CTX,
2913         .arg2_type      = ARG_ANYTHING,
2914         .arg3_type      = ARG_ANYTHING,
2915 };
2916
2917 BPF_CALL_3(bpf_skb_change_head, struct sk_buff *, skb, u32, head_room,
2918            u64, flags)
2919 {
2920         u32 max_len = __bpf_skb_max_len(skb);
2921         u32 new_len = skb->len + head_room;
2922         int ret;
2923
2924         if (unlikely(flags || (!skb_is_gso(skb) && new_len > max_len) ||
2925                      new_len < skb->len))
2926                 return -EINVAL;
2927
2928         ret = skb_cow(skb, head_room);
2929         if (likely(!ret)) {
2930                 /* Idea for this helper is that we currently only
2931                  * allow to expand on mac header. This means that
2932                  * skb->protocol network header, etc, stay as is.
2933                  * Compared to bpf_skb_change_tail(), we're more
2934                  * flexible due to not needing to linearize or
2935                  * reset GSO. Intention for this helper is to be
2936                  * used by an L3 skb that needs to push mac header
2937                  * for redirection into L2 device.
2938                  */
2939                 __skb_push(skb, head_room);
2940                 memset(skb->data, 0, head_room);
2941                 skb_reset_mac_header(skb);
2942         }
2943
2944         bpf_compute_data_pointers(skb);
2945         return 0;
2946 }
2947
2948 static const struct bpf_func_proto bpf_skb_change_head_proto = {
2949         .func           = bpf_skb_change_head,
2950         .gpl_only       = false,
2951         .ret_type       = RET_INTEGER,
2952         .arg1_type      = ARG_PTR_TO_CTX,
2953         .arg2_type      = ARG_ANYTHING,
2954         .arg3_type      = ARG_ANYTHING,
2955 };
2956
2957 static unsigned long xdp_get_metalen(const struct xdp_buff *xdp)
2958 {
2959         return xdp_data_meta_unsupported(xdp) ? 0 :
2960                xdp->data - xdp->data_meta;
2961 }
2962
2963 BPF_CALL_2(bpf_xdp_adjust_head, struct xdp_buff *, xdp, int, offset)
2964 {
2965         void *xdp_frame_end = xdp->data_hard_start + sizeof(struct xdp_frame);
2966         unsigned long metalen = xdp_get_metalen(xdp);
2967         void *data_start = xdp_frame_end + metalen;
2968         void *data = xdp->data + offset;
2969
2970         if (unlikely(data < data_start ||
2971                      data > xdp->data_end - ETH_HLEN))
2972                 return -EINVAL;
2973
2974         if (metalen)
2975                 memmove(xdp->data_meta + offset,
2976                         xdp->data_meta, metalen);
2977         xdp->data_meta += offset;
2978         xdp->data = data;
2979
2980         return 0;
2981 }
2982
2983 static const struct bpf_func_proto bpf_xdp_adjust_head_proto = {
2984         .func           = bpf_xdp_adjust_head,
2985         .gpl_only       = false,
2986         .ret_type       = RET_INTEGER,
2987         .arg1_type      = ARG_PTR_TO_CTX,
2988         .arg2_type      = ARG_ANYTHING,
2989 };
2990
2991 BPF_CALL_2(bpf_xdp_adjust_tail, struct xdp_buff *, xdp, int, offset)
2992 {
2993         void *data_end = xdp->data_end + offset;
2994
2995         /* only shrinking is allowed for now. */
2996         if (unlikely(offset >= 0))
2997                 return -EINVAL;
2998
2999         if (unlikely(data_end < xdp->data + ETH_HLEN))
3000                 return -EINVAL;
3001
3002         xdp->data_end = data_end;
3003
3004         return 0;
3005 }
3006
3007 static const struct bpf_func_proto bpf_xdp_adjust_tail_proto = {
3008         .func           = bpf_xdp_adjust_tail,
3009         .gpl_only       = false,
3010         .ret_type       = RET_INTEGER,
3011         .arg1_type      = ARG_PTR_TO_CTX,
3012         .arg2_type      = ARG_ANYTHING,
3013 };
3014
3015 BPF_CALL_2(bpf_xdp_adjust_meta, struct xdp_buff *, xdp, int, offset)
3016 {
3017         void *xdp_frame_end = xdp->data_hard_start + sizeof(struct xdp_frame);
3018         void *meta = xdp->data_meta + offset;
3019         unsigned long metalen = xdp->data - meta;
3020
3021         if (xdp_data_meta_unsupported(xdp))
3022                 return -ENOTSUPP;
3023         if (unlikely(meta < xdp_frame_end ||
3024                      meta > xdp->data))
3025                 return -EINVAL;
3026         if (unlikely((metalen & (sizeof(__u32) - 1)) ||
3027                      (metalen > 32)))
3028                 return -EACCES;
3029
3030         xdp->data_meta = meta;
3031
3032         return 0;
3033 }
3034
3035 static const struct bpf_func_proto bpf_xdp_adjust_meta_proto = {
3036         .func           = bpf_xdp_adjust_meta,
3037         .gpl_only       = false,
3038         .ret_type       = RET_INTEGER,
3039         .arg1_type      = ARG_PTR_TO_CTX,
3040         .arg2_type      = ARG_ANYTHING,
3041 };
3042
3043 static int __bpf_tx_xdp(struct net_device *dev,
3044                         struct bpf_map *map,
3045                         struct xdp_buff *xdp,
3046                         u32 index)
3047 {
3048         struct xdp_frame *xdpf;
3049         int sent;
3050
3051         if (!dev->netdev_ops->ndo_xdp_xmit) {
3052                 return -EOPNOTSUPP;
3053         }
3054
3055         xdpf = convert_to_xdp_frame(xdp);
3056         if (unlikely(!xdpf))
3057                 return -EOVERFLOW;
3058
3059         sent = dev->netdev_ops->ndo_xdp_xmit(dev, 1, &xdpf, XDP_XMIT_FLUSH);
3060         if (sent <= 0)
3061                 return sent;
3062         return 0;
3063 }
3064
3065 static int __bpf_tx_xdp_map(struct net_device *dev_rx, void *fwd,
3066                             struct bpf_map *map,
3067                             struct xdp_buff *xdp,
3068                             u32 index)
3069 {
3070         int err;
3071
3072         switch (map->map_type) {
3073         case BPF_MAP_TYPE_DEVMAP: {
3074                 struct bpf_dtab_netdev *dst = fwd;
3075
3076                 err = dev_map_enqueue(dst, xdp, dev_rx);
3077                 if (err)
3078                         return err;
3079                 __dev_map_insert_ctx(map, index);
3080                 break;
3081         }
3082         case BPF_MAP_TYPE_CPUMAP: {
3083                 struct bpf_cpu_map_entry *rcpu = fwd;
3084
3085                 err = cpu_map_enqueue(rcpu, xdp, dev_rx);
3086                 if (err)
3087                         return err;
3088                 __cpu_map_insert_ctx(map, index);
3089                 break;
3090         }
3091         case BPF_MAP_TYPE_XSKMAP: {
3092                 struct xdp_sock *xs = fwd;
3093
3094                 err = __xsk_map_redirect(map, xdp, xs);
3095                 return err;
3096         }
3097         default:
3098                 break;
3099         }
3100         return 0;
3101 }
3102
3103 void xdp_do_flush_map(void)
3104 {
3105         struct redirect_info *ri = this_cpu_ptr(&redirect_info);
3106         struct bpf_map *map = ri->map_to_flush;
3107
3108         ri->map_to_flush = NULL;
3109         if (map) {
3110                 switch (map->map_type) {
3111                 case BPF_MAP_TYPE_DEVMAP:
3112                         __dev_map_flush(map);
3113                         break;
3114                 case BPF_MAP_TYPE_CPUMAP:
3115                         __cpu_map_flush(map);
3116                         break;
3117                 case BPF_MAP_TYPE_XSKMAP:
3118                         __xsk_map_flush(map);
3119                         break;
3120                 default:
3121                         break;
3122                 }
3123         }
3124 }
3125 EXPORT_SYMBOL_GPL(xdp_do_flush_map);
3126
3127 static void *__xdp_map_lookup_elem(struct bpf_map *map, u32 index)
3128 {
3129         switch (map->map_type) {
3130         case BPF_MAP_TYPE_DEVMAP:
3131                 return __dev_map_lookup_elem(map, index);
3132         case BPF_MAP_TYPE_CPUMAP:
3133                 return __cpu_map_lookup_elem(map, index);
3134         case BPF_MAP_TYPE_XSKMAP:
3135                 return __xsk_map_lookup_elem(map, index);
3136         default:
3137                 return NULL;
3138         }
3139 }
3140
3141 static inline bool xdp_map_invalid(const struct bpf_prog *xdp_prog,
3142                                    unsigned long aux)
3143 {
3144         return (unsigned long)xdp_prog->aux != aux;
3145 }
3146
3147 static int xdp_do_redirect_map(struct net_device *dev, struct xdp_buff *xdp,
3148                                struct bpf_prog *xdp_prog)
3149 {
3150         struct redirect_info *ri = this_cpu_ptr(&redirect_info);
3151         unsigned long map_owner = ri->map_owner;
3152         struct bpf_map *map = ri->map;
3153         u32 index = ri->ifindex;
3154         void *fwd = NULL;
3155         int err;
3156
3157         ri->ifindex = 0;
3158         ri->map = NULL;
3159         ri->map_owner = 0;
3160
3161         if (unlikely(xdp_map_invalid(xdp_prog, map_owner))) {
3162                 err = -EFAULT;
3163                 map = NULL;
3164                 goto err;
3165         }
3166
3167         fwd = __xdp_map_lookup_elem(map, index);
3168         if (!fwd) {
3169                 err = -EINVAL;
3170                 goto err;
3171         }
3172         if (ri->map_to_flush && ri->map_to_flush != map)
3173                 xdp_do_flush_map();
3174
3175         err = __bpf_tx_xdp_map(dev, fwd, map, xdp, index);
3176         if (unlikely(err))
3177                 goto err;
3178
3179         ri->map_to_flush = map;
3180         _trace_xdp_redirect_map(dev, xdp_prog, fwd, map, index);
3181         return 0;
3182 err:
3183         _trace_xdp_redirect_map_err(dev, xdp_prog, fwd, map, index, err);
3184         return err;
3185 }
3186
3187 int xdp_do_redirect(struct net_device *dev, struct xdp_buff *xdp,
3188                     struct bpf_prog *xdp_prog)
3189 {
3190         struct redirect_info *ri = this_cpu_ptr(&redirect_info);
3191         struct net_device *fwd;
3192         u32 index = ri->ifindex;
3193         int err;
3194
3195         if (ri->map)
3196                 return xdp_do_redirect_map(dev, xdp, xdp_prog);
3197
3198         fwd = dev_get_by_index_rcu(dev_net(dev), index);
3199         ri->ifindex = 0;
3200         if (unlikely(!fwd)) {
3201                 err = -EINVAL;
3202                 goto err;
3203         }
3204
3205         err = __bpf_tx_xdp(fwd, NULL, xdp, 0);
3206         if (unlikely(err))
3207                 goto err;
3208
3209         _trace_xdp_redirect(dev, xdp_prog, index);
3210         return 0;
3211 err:
3212         _trace_xdp_redirect_err(dev, xdp_prog, index, err);
3213         return err;
3214 }
3215 EXPORT_SYMBOL_GPL(xdp_do_redirect);
3216
3217 static int __xdp_generic_ok_fwd_dev(struct sk_buff *skb, struct net_device *fwd)
3218 {
3219         unsigned int len;
3220
3221         if (unlikely(!(fwd->flags & IFF_UP)))
3222                 return -ENETDOWN;
3223
3224         len = fwd->mtu + fwd->hard_header_len + VLAN_HLEN;
3225         if (skb->len > len)
3226                 return -EMSGSIZE;
3227
3228         return 0;
3229 }
3230
3231 static int xdp_do_generic_redirect_map(struct net_device *dev,
3232                                        struct sk_buff *skb,
3233                                        struct xdp_buff *xdp,
3234                                        struct bpf_prog *xdp_prog)
3235 {
3236         struct redirect_info *ri = this_cpu_ptr(&redirect_info);
3237         unsigned long map_owner = ri->map_owner;
3238         struct bpf_map *map = ri->map;
3239         u32 index = ri->ifindex;
3240         void *fwd = NULL;
3241         int err = 0;
3242
3243         ri->ifindex = 0;
3244         ri->map = NULL;
3245         ri->map_owner = 0;
3246
3247         if (unlikely(xdp_map_invalid(xdp_prog, map_owner))) {
3248                 err = -EFAULT;
3249                 map = NULL;
3250                 goto err;
3251         }
3252         fwd = __xdp_map_lookup_elem(map, index);
3253         if (unlikely(!fwd)) {
3254                 err = -EINVAL;
3255                 goto err;
3256         }
3257
3258         if (map->map_type == BPF_MAP_TYPE_DEVMAP) {
3259                 if (unlikely((err = __xdp_generic_ok_fwd_dev(skb, fwd))))
3260                         goto err;
3261                 skb->dev = fwd;
3262                 generic_xdp_tx(skb, xdp_prog);
3263         } else if (map->map_type == BPF_MAP_TYPE_XSKMAP) {
3264                 struct xdp_sock *xs = fwd;
3265
3266                 err = xsk_generic_rcv(xs, xdp);
3267                 if (err)
3268                         goto err;
3269                 consume_skb(skb);
3270         } else {
3271                 /* TODO: Handle BPF_MAP_TYPE_CPUMAP */
3272                 err = -EBADRQC;
3273                 goto err;
3274         }
3275
3276         _trace_xdp_redirect_map(dev, xdp_prog, fwd, map, index);
3277         return 0;
3278 err:
3279         _trace_xdp_redirect_map_err(dev, xdp_prog, fwd, map, index, err);
3280         return err;
3281 }
3282
3283 int xdp_do_generic_redirect(struct net_device *dev, struct sk_buff *skb,
3284                             struct xdp_buff *xdp, struct bpf_prog *xdp_prog)
3285 {
3286         struct redirect_info *ri = this_cpu_ptr(&redirect_info);
3287         u32 index = ri->ifindex;
3288         struct net_device *fwd;
3289         int err = 0;
3290
3291         if (ri->map)
3292                 return xdp_do_generic_redirect_map(dev, skb, xdp, xdp_prog);
3293
3294         ri->ifindex = 0;
3295         fwd = dev_get_by_index_rcu(dev_net(dev), index);
3296         if (unlikely(!fwd)) {
3297                 err = -EINVAL;
3298                 goto err;
3299         }
3300
3301         if (unlikely((err = __xdp_generic_ok_fwd_dev(skb, fwd))))
3302                 goto err;
3303
3304         skb->dev = fwd;
3305         _trace_xdp_redirect(dev, xdp_prog, index);
3306         generic_xdp_tx(skb, xdp_prog);
3307         return 0;
3308 err:
3309         _trace_xdp_redirect_err(dev, xdp_prog, index, err);
3310         return err;
3311 }
3312 EXPORT_SYMBOL_GPL(xdp_do_generic_redirect);
3313
3314 BPF_CALL_2(bpf_xdp_redirect, u32, ifindex, u64, flags)
3315 {
3316         struct redirect_info *ri = this_cpu_ptr(&redirect_info);
3317
3318         if (unlikely(flags))
3319                 return XDP_ABORTED;
3320
3321         ri->ifindex = ifindex;
3322         ri->flags = flags;
3323         ri->map = NULL;
3324         ri->map_owner = 0;
3325
3326         return XDP_REDIRECT;
3327 }
3328
3329 static const struct bpf_func_proto bpf_xdp_redirect_proto = {
3330         .func           = bpf_xdp_redirect,
3331         .gpl_only       = false,
3332         .ret_type       = RET_INTEGER,
3333         .arg1_type      = ARG_ANYTHING,
3334         .arg2_type      = ARG_ANYTHING,
3335 };
3336
3337 BPF_CALL_4(bpf_xdp_redirect_map, struct bpf_map *, map, u32, ifindex, u64, flags,
3338            unsigned long, map_owner)
3339 {
3340         struct redirect_info *ri = this_cpu_ptr(&redirect_info);
3341
3342         if (unlikely(flags))
3343                 return XDP_ABORTED;
3344
3345         ri->ifindex = ifindex;
3346         ri->flags = flags;
3347         ri->map = map;
3348         ri->map_owner = map_owner;
3349
3350         return XDP_REDIRECT;
3351 }
3352
3353 /* Note, arg4 is hidden from users and populated by the verifier
3354  * with the right pointer.
3355  */
3356 static const struct bpf_func_proto bpf_xdp_redirect_map_proto = {
3357         .func           = bpf_xdp_redirect_map,
3358         .gpl_only       = false,
3359         .ret_type       = RET_INTEGER,
3360         .arg1_type      = ARG_CONST_MAP_PTR,
3361         .arg2_type      = ARG_ANYTHING,
3362         .arg3_type      = ARG_ANYTHING,
3363 };
3364
3365 static unsigned long bpf_skb_copy(void *dst_buff, const void *skb,
3366                                   unsigned long off, unsigned long len)
3367 {
3368         void *ptr = skb_header_pointer(skb, off, len, dst_buff);
3369
3370         if (unlikely(!ptr))
3371                 return len;
3372         if (ptr != dst_buff)
3373                 memcpy(dst_buff, ptr, len);
3374
3375         return 0;
3376 }
3377
3378 BPF_CALL_5(bpf_skb_event_output, struct sk_buff *, skb, struct bpf_map *, map,
3379            u64, flags, void *, meta, u64, meta_size)
3380 {
3381         u64 skb_size = (flags & BPF_F_CTXLEN_MASK) >> 32;
3382
3383         if (unlikely(flags & ~(BPF_F_CTXLEN_MASK | BPF_F_INDEX_MASK)))
3384                 return -EINVAL;
3385         if (unlikely(skb_size > skb->len))
3386                 return -EFAULT;
3387
3388         return bpf_event_output(map, flags, meta, meta_size, skb, skb_size,
3389                                 bpf_skb_copy);
3390 }
3391
3392 static const struct bpf_func_proto bpf_skb_event_output_proto = {
3393         .func           = bpf_skb_event_output,
3394         .gpl_only       = true,
3395         .ret_type       = RET_INTEGER,
3396         .arg1_type      = ARG_PTR_TO_CTX,
3397         .arg2_type      = ARG_CONST_MAP_PTR,
3398         .arg3_type      = ARG_ANYTHING,
3399         .arg4_type      = ARG_PTR_TO_MEM,
3400         .arg5_type      = ARG_CONST_SIZE_OR_ZERO,
3401 };
3402
3403 static unsigned short bpf_tunnel_key_af(u64 flags)
3404 {
3405         return flags & BPF_F_TUNINFO_IPV6 ? AF_INET6 : AF_INET;
3406 }
3407
3408 BPF_CALL_4(bpf_skb_get_tunnel_key, struct sk_buff *, skb, struct bpf_tunnel_key *, to,
3409            u32, size, u64, flags)
3410 {
3411         const struct ip_tunnel_info *info = skb_tunnel_info(skb);
3412         u8 compat[sizeof(struct bpf_tunnel_key)];
3413         void *to_orig = to;
3414         int err;
3415
3416         if (unlikely(!info || (flags & ~(BPF_F_TUNINFO_IPV6)))) {
3417                 err = -EINVAL;
3418                 goto err_clear;
3419         }
3420         if (ip_tunnel_info_af(info) != bpf_tunnel_key_af(flags)) {
3421                 err = -EPROTO;
3422                 goto err_clear;
3423         }
3424         if (unlikely(size != sizeof(struct bpf_tunnel_key))) {
3425                 err = -EINVAL;
3426                 switch (size) {
3427                 case offsetof(struct bpf_tunnel_key, tunnel_label):
3428                 case offsetof(struct bpf_tunnel_key, tunnel_ext):
3429                         goto set_compat;
3430                 case offsetof(struct bpf_tunnel_key, remote_ipv6[1]):
3431                         /* Fixup deprecated structure layouts here, so we have
3432                          * a common path later on.
3433                          */
3434                         if (ip_tunnel_info_af(info) != AF_INET)
3435                                 goto err_clear;
3436 set_compat:
3437                         to = (struct bpf_tunnel_key *)compat;
3438                         break;
3439                 default:
3440                         goto err_clear;
3441                 }
3442         }
3443
3444         to->tunnel_id = be64_to_cpu(info->key.tun_id);
3445         to->tunnel_tos = info->key.tos;
3446         to->tunnel_ttl = info->key.ttl;
3447         to->tunnel_ext = 0;
3448
3449         if (flags & BPF_F_TUNINFO_IPV6) {
3450                 memcpy(to->remote_ipv6, &info->key.u.ipv6.src,
3451                        sizeof(to->remote_ipv6));
3452                 to->tunnel_label = be32_to_cpu(info->key.label);
3453         } else {
3454                 to->remote_ipv4 = be32_to_cpu(info->key.u.ipv4.src);
3455                 memset(&to->remote_ipv6[1], 0, sizeof(__u32) * 3);
3456                 to->tunnel_label = 0;
3457         }
3458
3459         if (unlikely(size != sizeof(struct bpf_tunnel_key)))
3460                 memcpy(to_orig, to, size);
3461
3462         return 0;
3463 err_clear:
3464         memset(to_orig, 0, size);
3465         return err;
3466 }
3467
3468 static const struct bpf_func_proto bpf_skb_get_tunnel_key_proto = {
3469         .func           = bpf_skb_get_tunnel_key,
3470         .gpl_only       = false,
3471         .ret_type       = RET_INTEGER,
3472         .arg1_type      = ARG_PTR_TO_CTX,
3473         .arg2_type      = ARG_PTR_TO_UNINIT_MEM,
3474         .arg3_type      = ARG_CONST_SIZE,
3475         .arg4_type      = ARG_ANYTHING,
3476 };
3477
3478 BPF_CALL_3(bpf_skb_get_tunnel_opt, struct sk_buff *, skb, u8 *, to, u32, size)
3479 {
3480         const struct ip_tunnel_info *info = skb_tunnel_info(skb);
3481         int err;
3482
3483         if (unlikely(!info ||
3484                      !(info->key.tun_flags & TUNNEL_OPTIONS_PRESENT))) {
3485                 err = -ENOENT;
3486                 goto err_clear;
3487         }
3488         if (unlikely(size < info->options_len)) {
3489                 err = -ENOMEM;
3490                 goto err_clear;
3491         }
3492
3493         ip_tunnel_info_opts_get(to, info);
3494         if (size > info->options_len)
3495                 memset(to + info->options_len, 0, size - info->options_len);
3496
3497         return info->options_len;
3498 err_clear:
3499         memset(to, 0, size);
3500         return err;
3501 }
3502
3503 static const struct bpf_func_proto bpf_skb_get_tunnel_opt_proto = {
3504         .func           = bpf_skb_get_tunnel_opt,
3505         .gpl_only       = false,
3506         .ret_type       = RET_INTEGER,
3507         .arg1_type      = ARG_PTR_TO_CTX,
3508         .arg2_type      = ARG_PTR_TO_UNINIT_MEM,
3509         .arg3_type      = ARG_CONST_SIZE,
3510 };
3511
3512 static struct metadata_dst __percpu *md_dst;
3513
3514 BPF_CALL_4(bpf_skb_set_tunnel_key, struct sk_buff *, skb,
3515            const struct bpf_tunnel_key *, from, u32, size, u64, flags)
3516 {
3517         struct metadata_dst *md = this_cpu_ptr(md_dst);
3518         u8 compat[sizeof(struct bpf_tunnel_key)];
3519         struct ip_tunnel_info *info;
3520
3521         if (unlikely(flags & ~(BPF_F_TUNINFO_IPV6 | BPF_F_ZERO_CSUM_TX |
3522                                BPF_F_DONT_FRAGMENT | BPF_F_SEQ_NUMBER)))
3523                 return -EINVAL;
3524         if (unlikely(size != sizeof(struct bpf_tunnel_key))) {
3525                 switch (size) {
3526                 case offsetof(struct bpf_tunnel_key, tunnel_label):
3527                 case offsetof(struct bpf_tunnel_key, tunnel_ext):
3528                 case offsetof(struct bpf_tunnel_key, remote_ipv6[1]):
3529                         /* Fixup deprecated structure layouts here, so we have
3530                          * a common path later on.
3531                          */
3532                         memcpy(compat, from, size);
3533                         memset(compat + size, 0, sizeof(compat) - size);
3534                         from = (const struct bpf_tunnel_key *) compat;
3535                         break;
3536                 default:
3537                         return -EINVAL;
3538                 }
3539         }
3540         if (unlikely((!(flags & BPF_F_TUNINFO_IPV6) && from->tunnel_label) ||
3541                      from->tunnel_ext))
3542                 return -EINVAL;
3543
3544         skb_dst_drop(skb);
3545         dst_hold((struct dst_entry *) md);
3546         skb_dst_set(skb, (struct dst_entry *) md);
3547
3548         info = &md->u.tun_info;
3549         memset(info, 0, sizeof(*info));
3550         info->mode = IP_TUNNEL_INFO_TX;
3551
3552         info->key.tun_flags = TUNNEL_KEY | TUNNEL_CSUM | TUNNEL_NOCACHE;
3553         if (flags & BPF_F_DONT_FRAGMENT)
3554                 info->key.tun_flags |= TUNNEL_DONT_FRAGMENT;
3555         if (flags & BPF_F_ZERO_CSUM_TX)
3556                 info->key.tun_flags &= ~TUNNEL_CSUM;
3557         if (flags & BPF_F_SEQ_NUMBER)
3558                 info->key.tun_flags |= TUNNEL_SEQ;
3559
3560         info->key.tun_id = cpu_to_be64(from->tunnel_id);
3561         info->key.tos = from->tunnel_tos;
3562         info->key.ttl = from->tunnel_ttl;
3563
3564         if (flags & BPF_F_TUNINFO_IPV6) {
3565                 info->mode |= IP_TUNNEL_INFO_IPV6;
3566                 memcpy(&info->key.u.ipv6.dst, from->remote_ipv6,
3567                        sizeof(from->remote_ipv6));
3568                 info->key.label = cpu_to_be32(from->tunnel_label) &
3569                                   IPV6_FLOWLABEL_MASK;
3570         } else {
3571                 info->key.u.ipv4.dst = cpu_to_be32(from->remote_ipv4);
3572         }
3573
3574         return 0;
3575 }
3576
3577 static const struct bpf_func_proto bpf_skb_set_tunnel_key_proto = {
3578         .func           = bpf_skb_set_tunnel_key,
3579         .gpl_only       = false,
3580         .ret_type       = RET_INTEGER,
3581         .arg1_type      = ARG_PTR_TO_CTX,
3582         .arg2_type      = ARG_PTR_TO_MEM,
3583         .arg3_type      = ARG_CONST_SIZE,
3584         .arg4_type      = ARG_ANYTHING,
3585 };
3586
3587 BPF_CALL_3(bpf_skb_set_tunnel_opt, struct sk_buff *, skb,
3588            const u8 *, from, u32, size)
3589 {
3590         struct ip_tunnel_info *info = skb_tunnel_info(skb);
3591         const struct metadata_dst *md = this_cpu_ptr(md_dst);
3592
3593         if (unlikely(info != &md->u.tun_info || (size & (sizeof(u32) - 1))))
3594                 return -EINVAL;
3595         if (unlikely(size > IP_TUNNEL_OPTS_MAX))
3596                 return -ENOMEM;
3597
3598         ip_tunnel_info_opts_set(info, from, size);
3599
3600         return 0;
3601 }
3602
3603 static const struct bpf_func_proto bpf_skb_set_tunnel_opt_proto = {
3604         .func           = bpf_skb_set_tunnel_opt,
3605         .gpl_only       = false,
3606         .ret_type       = RET_INTEGER,
3607         .arg1_type      = ARG_PTR_TO_CTX,
3608         .arg2_type      = ARG_PTR_TO_MEM,
3609         .arg3_type      = ARG_CONST_SIZE,
3610 };
3611
3612 static const struct bpf_func_proto *
3613 bpf_get_skb_set_tunnel_proto(enum bpf_func_id which)
3614 {
3615         if (!md_dst) {
3616                 struct metadata_dst __percpu *tmp;
3617
3618                 tmp = metadata_dst_alloc_percpu(IP_TUNNEL_OPTS_MAX,
3619                                                 METADATA_IP_TUNNEL,
3620                                                 GFP_KERNEL);
3621                 if (!tmp)
3622                         return NULL;
3623                 if (cmpxchg(&md_dst, NULL, tmp))
3624                         metadata_dst_free_percpu(tmp);
3625         }
3626
3627         switch (which) {
3628         case BPF_FUNC_skb_set_tunnel_key:
3629                 return &bpf_skb_set_tunnel_key_proto;
3630         case BPF_FUNC_skb_set_tunnel_opt:
3631                 return &bpf_skb_set_tunnel_opt_proto;
3632         default:
3633                 return NULL;
3634         }
3635 }
3636
3637 BPF_CALL_3(bpf_skb_under_cgroup, struct sk_buff *, skb, struct bpf_map *, map,
3638            u32, idx)
3639 {
3640         struct bpf_array *array = container_of(map, struct bpf_array, map);
3641         struct cgroup *cgrp;
3642         struct sock *sk;
3643
3644         sk = skb_to_full_sk(skb);
3645         if (!sk || !sk_fullsock(sk))
3646                 return -ENOENT;
3647         if (unlikely(idx >= array->map.max_entries))
3648                 return -E2BIG;
3649
3650         cgrp = READ_ONCE(array->ptrs[idx]);
3651         if (unlikely(!cgrp))
3652                 return -EAGAIN;
3653
3654         return sk_under_cgroup_hierarchy(sk, cgrp);
3655 }
3656
3657 static const struct bpf_func_proto bpf_skb_under_cgroup_proto = {
3658         .func           = bpf_skb_under_cgroup,
3659         .gpl_only       = false,
3660         .ret_type       = RET_INTEGER,
3661         .arg1_type      = ARG_PTR_TO_CTX,
3662         .arg2_type      = ARG_CONST_MAP_PTR,
3663         .arg3_type      = ARG_ANYTHING,
3664 };
3665
3666 #ifdef CONFIG_SOCK_CGROUP_DATA
3667 BPF_CALL_1(bpf_skb_cgroup_id, const struct sk_buff *, skb)
3668 {
3669         struct sock *sk = skb_to_full_sk(skb);
3670         struct cgroup *cgrp;
3671
3672         if (!sk || !sk_fullsock(sk))
3673                 return 0;
3674
3675         cgrp = sock_cgroup_ptr(&sk->sk_cgrp_data);
3676         return cgrp->kn->id.id;
3677 }
3678
3679 static const struct bpf_func_proto bpf_skb_cgroup_id_proto = {
3680         .func           = bpf_skb_cgroup_id,
3681         .gpl_only       = false,
3682         .ret_type       = RET_INTEGER,
3683         .arg1_type      = ARG_PTR_TO_CTX,
3684 };
3685 #endif
3686
3687 static unsigned long bpf_xdp_copy(void *dst_buff, const void *src_buff,
3688                                   unsigned long off, unsigned long len)
3689 {
3690         memcpy(dst_buff, src_buff + off, len);
3691         return 0;
3692 }
3693
3694 BPF_CALL_5(bpf_xdp_event_output, struct xdp_buff *, xdp, struct bpf_map *, map,
3695            u64, flags, void *, meta, u64, meta_size)
3696 {
3697         u64 xdp_size = (flags & BPF_F_CTXLEN_MASK) >> 32;
3698
3699         if (unlikely(flags & ~(BPF_F_CTXLEN_MASK | BPF_F_INDEX_MASK)))
3700                 return -EINVAL;
3701         if (unlikely(xdp_size > (unsigned long)(xdp->data_end - xdp->data)))
3702                 return -EFAULT;
3703
3704         return bpf_event_output(map, flags, meta, meta_size, xdp->data,
3705                                 xdp_size, bpf_xdp_copy);
3706 }
3707
3708 static const struct bpf_func_proto bpf_xdp_event_output_proto = {
3709         .func           = bpf_xdp_event_output,
3710         .gpl_only       = true,
3711         .ret_type       = RET_INTEGER,
3712         .arg1_type      = ARG_PTR_TO_CTX,
3713         .arg2_type      = ARG_CONST_MAP_PTR,
3714         .arg3_type      = ARG_ANYTHING,
3715         .arg4_type      = ARG_PTR_TO_MEM,
3716         .arg5_type      = ARG_CONST_SIZE_OR_ZERO,
3717 };
3718
3719 BPF_CALL_1(bpf_get_socket_cookie, struct sk_buff *, skb)
3720 {
3721         return skb->sk ? sock_gen_cookie(skb->sk) : 0;
3722 }
3723
3724 static const struct bpf_func_proto bpf_get_socket_cookie_proto = {
3725         .func           = bpf_get_socket_cookie,
3726         .gpl_only       = false,
3727         .ret_type       = RET_INTEGER,
3728         .arg1_type      = ARG_PTR_TO_CTX,
3729 };
3730
3731 BPF_CALL_1(bpf_get_socket_uid, struct sk_buff *, skb)
3732 {
3733         struct sock *sk = sk_to_full_sk(skb->sk);
3734         kuid_t kuid;
3735
3736         if (!sk || !sk_fullsock(sk))
3737                 return overflowuid;
3738         kuid = sock_net_uid(sock_net(sk), sk);
3739         return from_kuid_munged(sock_net(sk)->user_ns, kuid);
3740 }
3741
3742 static const struct bpf_func_proto bpf_get_socket_uid_proto = {
3743         .func           = bpf_get_socket_uid,
3744         .gpl_only       = false,
3745         .ret_type       = RET_INTEGER,
3746         .arg1_type      = ARG_PTR_TO_CTX,
3747 };
3748
3749 BPF_CALL_5(bpf_setsockopt, struct bpf_sock_ops_kern *, bpf_sock,
3750            int, level, int, optname, char *, optval, int, optlen)
3751 {
3752         struct sock *sk = bpf_sock->sk;
3753         int ret = 0;
3754         int val;
3755
3756         if (!sk_fullsock(sk))
3757                 return -EINVAL;
3758
3759         if (level == SOL_SOCKET) {
3760                 if (optlen != sizeof(int))
3761                         return -EINVAL;
3762                 val = *((int *)optval);
3763
3764                 /* Only some socketops are supported */
3765                 switch (optname) {
3766                 case SO_RCVBUF:
3767                         sk->sk_userlocks |= SOCK_RCVBUF_LOCK;
3768                         sk->sk_rcvbuf = max_t(int, val * 2, SOCK_MIN_RCVBUF);
3769                         break;
3770                 case SO_SNDBUF:
3771                         sk->sk_userlocks |= SOCK_SNDBUF_LOCK;
3772                         sk->sk_sndbuf = max_t(int, val * 2, SOCK_MIN_SNDBUF);
3773                         break;
3774                 case SO_MAX_PACING_RATE:
3775                         sk->sk_max_pacing_rate = val;
3776                         sk->sk_pacing_rate = min(sk->sk_pacing_rate,
3777                                                  sk->sk_max_pacing_rate);
3778                         break;
3779                 case SO_PRIORITY:
3780                         sk->sk_priority = val;
3781                         break;
3782                 case SO_RCVLOWAT:
3783                         if (val < 0)
3784                                 val = INT_MAX;
3785                         sk->sk_rcvlowat = val ? : 1;
3786                         break;
3787                 case SO_MARK:
3788                         sk->sk_mark = val;
3789                         break;
3790                 default:
3791                         ret = -EINVAL;
3792                 }
3793 #ifdef CONFIG_INET
3794         } else if (level == SOL_IP) {
3795                 if (optlen != sizeof(int) || sk->sk_family != AF_INET)
3796                         return -EINVAL;
3797
3798                 val = *((int *)optval);
3799                 /* Only some options are supported */
3800                 switch (optname) {
3801                 case IP_TOS:
3802                         if (val < -1 || val > 0xff) {
3803                                 ret = -EINVAL;
3804                         } else {
3805                                 struct inet_sock *inet = inet_sk(sk);
3806
3807                                 if (val == -1)
3808                                         val = 0;
3809                                 inet->tos = val;
3810                         }
3811                         break;
3812                 default:
3813                         ret = -EINVAL;
3814                 }
3815 #if IS_ENABLED(CONFIG_IPV6)
3816         } else if (level == SOL_IPV6) {
3817                 if (optlen != sizeof(int) || sk->sk_family != AF_INET6)
3818                         return -EINVAL;
3819
3820                 val = *((int *)optval);
3821                 /* Only some options are supported */
3822                 switch (optname) {
3823                 case IPV6_TCLASS:
3824                         if (val < -1 || val > 0xff) {
3825                                 ret = -EINVAL;
3826                         } else {
3827                                 struct ipv6_pinfo *np = inet6_sk(sk);
3828
3829                                 if (val == -1)
3830                                         val = 0;
3831                                 np->tclass = val;
3832                         }
3833                         break;
3834                 default:
3835                         ret = -EINVAL;
3836                 }
3837 #endif
3838         } else if (level == SOL_TCP &&
3839                    sk->sk_prot->setsockopt == tcp_setsockopt) {
3840                 if (optname == TCP_CONGESTION) {
3841                         char name[TCP_CA_NAME_MAX];
3842                         bool reinit = bpf_sock->op > BPF_SOCK_OPS_NEEDS_ECN;
3843
3844                         strncpy(name, optval, min_t(long, optlen,
3845                                                     TCP_CA_NAME_MAX-1));
3846                         name[TCP_CA_NAME_MAX-1] = 0;
3847                         ret = tcp_set_congestion_control(sk, name, false,
3848                                                          reinit);
3849                 } else {
3850                         struct tcp_sock *tp = tcp_sk(sk);
3851
3852                         if (optlen != sizeof(int))
3853                                 return -EINVAL;
3854
3855                         val = *((int *)optval);
3856                         /* Only some options are supported */
3857                         switch (optname) {
3858                         case TCP_BPF_IW:
3859                                 if (val <= 0 || tp->data_segs_out > 0)
3860                                         ret = -EINVAL;
3861                                 else
3862                                         tp->snd_cwnd = val;
3863                                 break;
3864                         case TCP_BPF_SNDCWND_CLAMP:
3865                                 if (val <= 0) {
3866                                         ret = -EINVAL;
3867                                 } else {
3868                                         tp->snd_cwnd_clamp = val;
3869                                         tp->snd_ssthresh = val;
3870                                 }
3871                                 break;
3872                         default:
3873                                 ret = -EINVAL;
3874                         }
3875                 }
3876 #endif
3877         } else {
3878                 ret = -EINVAL;
3879         }
3880         return ret;
3881 }
3882
3883 static const struct bpf_func_proto bpf_setsockopt_proto = {
3884         .func           = bpf_setsockopt,
3885         .gpl_only       = false,
3886         .ret_type       = RET_INTEGER,
3887         .arg1_type      = ARG_PTR_TO_CTX,
3888         .arg2_type      = ARG_ANYTHING,
3889         .arg3_type      = ARG_ANYTHING,
3890         .arg4_type      = ARG_PTR_TO_MEM,
3891         .arg5_type      = ARG_CONST_SIZE,
3892 };
3893
3894 BPF_CALL_5(bpf_getsockopt, struct bpf_sock_ops_kern *, bpf_sock,
3895            int, level, int, optname, char *, optval, int, optlen)
3896 {
3897         struct sock *sk = bpf_sock->sk;
3898
3899         if (!sk_fullsock(sk))
3900                 goto err_clear;
3901
3902 #ifdef CONFIG_INET
3903         if (level == SOL_TCP && sk->sk_prot->getsockopt == tcp_getsockopt) {
3904                 if (optname == TCP_CONGESTION) {
3905                         struct inet_connection_sock *icsk = inet_csk(sk);
3906
3907                         if (!icsk->icsk_ca_ops || optlen <= 1)
3908                                 goto err_clear;
3909                         strncpy(optval, icsk->icsk_ca_ops->name, optlen);
3910                         optval[optlen - 1] = 0;
3911                 } else {
3912                         goto err_clear;
3913                 }
3914         } else if (level == SOL_IP) {
3915                 struct inet_sock *inet = inet_sk(sk);
3916
3917                 if (optlen != sizeof(int) || sk->sk_family != AF_INET)
3918                         goto err_clear;
3919
3920                 /* Only some options are supported */
3921                 switch (optname) {
3922                 case IP_TOS:
3923                         *((int *)optval) = (int)inet->tos;
3924                         break;
3925                 default:
3926                         goto err_clear;
3927                 }
3928 #if IS_ENABLED(CONFIG_IPV6)
3929         } else if (level == SOL_IPV6) {
3930                 struct ipv6_pinfo *np = inet6_sk(sk);
3931
3932                 if (optlen != sizeof(int) || sk->sk_family != AF_INET6)
3933                         goto err_clear;
3934
3935                 /* Only some options are supported */
3936                 switch (optname) {
3937                 case IPV6_TCLASS:
3938                         *((int *)optval) = (int)np->tclass;
3939                         break;
3940                 default:
3941                         goto err_clear;
3942                 }
3943 #endif
3944         } else {
3945                 goto err_clear;
3946         }
3947         return 0;
3948 #endif
3949 err_clear:
3950         memset(optval, 0, optlen);
3951         return -EINVAL;
3952 }
3953
3954 static const struct bpf_func_proto bpf_getsockopt_proto = {
3955         .func           = bpf_getsockopt,
3956         .gpl_only       = false,
3957         .ret_type       = RET_INTEGER,
3958         .arg1_type      = ARG_PTR_TO_CTX,
3959         .arg2_type      = ARG_ANYTHING,
3960         .arg3_type      = ARG_ANYTHING,
3961         .arg4_type      = ARG_PTR_TO_UNINIT_MEM,
3962         .arg5_type      = ARG_CONST_SIZE,
3963 };
3964
3965 BPF_CALL_2(bpf_sock_ops_cb_flags_set, struct bpf_sock_ops_kern *, bpf_sock,
3966            int, argval)
3967 {
3968         struct sock *sk = bpf_sock->sk;
3969         int val = argval & BPF_SOCK_OPS_ALL_CB_FLAGS;
3970
3971         if (!IS_ENABLED(CONFIG_INET) || !sk_fullsock(sk))
3972                 return -EINVAL;
3973
3974         if (val)
3975                 tcp_sk(sk)->bpf_sock_ops_cb_flags = val;
3976
3977         return argval & (~BPF_SOCK_OPS_ALL_CB_FLAGS);
3978 }
3979
3980 static const struct bpf_func_proto bpf_sock_ops_cb_flags_set_proto = {
3981         .func           = bpf_sock_ops_cb_flags_set,
3982         .gpl_only       = false,
3983         .ret_type       = RET_INTEGER,
3984         .arg1_type      = ARG_PTR_TO_CTX,
3985         .arg2_type      = ARG_ANYTHING,
3986 };
3987
3988 const struct ipv6_bpf_stub *ipv6_bpf_stub __read_mostly;
3989 EXPORT_SYMBOL_GPL(ipv6_bpf_stub);
3990
3991 BPF_CALL_3(bpf_bind, struct bpf_sock_addr_kern *, ctx, struct sockaddr *, addr,
3992            int, addr_len)
3993 {
3994 #ifdef CONFIG_INET
3995         struct sock *sk = ctx->sk;
3996         int err;
3997
3998         /* Binding to port can be expensive so it's prohibited in the helper.
3999          * Only binding to IP is supported.
4000          */
4001         err = -EINVAL;
4002         if (addr->sa_family == AF_INET) {
4003                 if (addr_len < sizeof(struct sockaddr_in))
4004                         return err;
4005                 if (((struct sockaddr_in *)addr)->sin_port != htons(0))
4006                         return err;
4007                 return __inet_bind(sk, addr, addr_len, true, false);
4008 #if IS_ENABLED(CONFIG_IPV6)
4009         } else if (addr->sa_family == AF_INET6) {
4010                 if (addr_len < SIN6_LEN_RFC2133)
4011                         return err;
4012                 if (((struct sockaddr_in6 *)addr)->sin6_port != htons(0))
4013                         return err;
4014                 /* ipv6_bpf_stub cannot be NULL, since it's called from
4015                  * bpf_cgroup_inet6_connect hook and ipv6 is already loaded
4016                  */
4017                 return ipv6_bpf_stub->inet6_bind(sk, addr, addr_len, true, false);
4018 #endif /* CONFIG_IPV6 */
4019         }
4020 #endif /* CONFIG_INET */
4021
4022         return -EAFNOSUPPORT;
4023 }
4024
4025 static const struct bpf_func_proto bpf_bind_proto = {
4026         .func           = bpf_bind,
4027         .gpl_only       = false,
4028         .ret_type       = RET_INTEGER,
4029         .arg1_type      = ARG_PTR_TO_CTX,
4030         .arg2_type      = ARG_PTR_TO_MEM,
4031         .arg3_type      = ARG_CONST_SIZE,
4032 };
4033
4034 #ifdef CONFIG_XFRM
4035 BPF_CALL_5(bpf_skb_get_xfrm_state, struct sk_buff *, skb, u32, index,
4036            struct bpf_xfrm_state *, to, u32, size, u64, flags)
4037 {
4038         const struct sec_path *sp = skb_sec_path(skb);
4039         const struct xfrm_state *x;
4040
4041         if (!sp || unlikely(index >= sp->len || flags))
4042                 goto err_clear;
4043
4044         x = sp->xvec[index];
4045
4046         if (unlikely(size != sizeof(struct bpf_xfrm_state)))
4047                 goto err_clear;
4048
4049         to->reqid = x->props.reqid;
4050         to->spi = x->id.spi;
4051         to->family = x->props.family;
4052         to->ext = 0;
4053
4054         if (to->family == AF_INET6) {
4055                 memcpy(to->remote_ipv6, x->props.saddr.a6,
4056                        sizeof(to->remote_ipv6));
4057         } else {
4058                 to->remote_ipv4 = x->props.saddr.a4;
4059                 memset(&to->remote_ipv6[1], 0, sizeof(__u32) * 3);
4060         }
4061
4062         return 0;
4063 err_clear:
4064         memset(to, 0, size);
4065         return -EINVAL;
4066 }
4067
4068 static const struct bpf_func_proto bpf_skb_get_xfrm_state_proto = {
4069         .func           = bpf_skb_get_xfrm_state,
4070         .gpl_only       = false,
4071         .ret_type       = RET_INTEGER,
4072         .arg1_type      = ARG_PTR_TO_CTX,
4073         .arg2_type      = ARG_ANYTHING,
4074         .arg3_type      = ARG_PTR_TO_UNINIT_MEM,
4075         .arg4_type      = ARG_CONST_SIZE,
4076         .arg5_type      = ARG_ANYTHING,
4077 };
4078 #endif
4079
4080 #if IS_ENABLED(CONFIG_INET) || IS_ENABLED(CONFIG_IPV6)
4081 static int bpf_fib_set_fwd_params(struct bpf_fib_lookup *params,
4082                                   const struct neighbour *neigh,
4083                                   const struct net_device *dev)
4084 {
4085         memcpy(params->dmac, neigh->ha, ETH_ALEN);
4086         memcpy(params->smac, dev->dev_addr, ETH_ALEN);
4087         params->h_vlan_TCI = 0;
4088         params->h_vlan_proto = 0;
4089
4090         return dev->ifindex;
4091 }
4092 #endif
4093
4094 #if IS_ENABLED(CONFIG_INET)
4095 static int bpf_ipv4_fib_lookup(struct net *net, struct bpf_fib_lookup *params,
4096                                u32 flags, bool check_mtu)
4097 {
4098         struct in_device *in_dev;
4099         struct neighbour *neigh;
4100         struct net_device *dev;
4101         struct fib_result res;
4102         struct fib_nh *nh;
4103         struct flowi4 fl4;
4104         int err;
4105         u32 mtu;
4106
4107         dev = dev_get_by_index_rcu(net, params->ifindex);
4108         if (unlikely(!dev))
4109                 return -ENODEV;
4110
4111         /* verify forwarding is enabled on this interface */
4112         in_dev = __in_dev_get_rcu(dev);
4113         if (unlikely(!in_dev || !IN_DEV_FORWARD(in_dev)))
4114                 return 0;
4115
4116         if (flags & BPF_FIB_LOOKUP_OUTPUT) {
4117                 fl4.flowi4_iif = 1;
4118                 fl4.flowi4_oif = params->ifindex;
4119         } else {
4120                 fl4.flowi4_iif = params->ifindex;
4121                 fl4.flowi4_oif = 0;
4122         }
4123         fl4.flowi4_tos = params->tos & IPTOS_RT_MASK;
4124         fl4.flowi4_scope = RT_SCOPE_UNIVERSE;
4125         fl4.flowi4_flags = 0;
4126
4127         fl4.flowi4_proto = params->l4_protocol;
4128         fl4.daddr = params->ipv4_dst;
4129         fl4.saddr = params->ipv4_src;
4130         fl4.fl4_sport = params->sport;
4131         fl4.fl4_dport = params->dport;
4132
4133         if (flags & BPF_FIB_LOOKUP_DIRECT) {
4134                 u32 tbid = l3mdev_fib_table_rcu(dev) ? : RT_TABLE_MAIN;
4135                 struct fib_table *tb;
4136
4137                 tb = fib_get_table(net, tbid);
4138                 if (unlikely(!tb))
4139                         return 0;
4140
4141                 err = fib_table_lookup(tb, &fl4, &res, FIB_LOOKUP_NOREF);
4142         } else {
4143                 fl4.flowi4_mark = 0;
4144                 fl4.flowi4_secid = 0;
4145                 fl4.flowi4_tun_key.tun_id = 0;
4146                 fl4.flowi4_uid = sock_net_uid(net, NULL);
4147
4148                 err = fib_lookup(net, &fl4, &res, FIB_LOOKUP_NOREF);
4149         }
4150
4151         if (err || res.type != RTN_UNICAST)
4152                 return 0;
4153
4154         if (res.fi->fib_nhs > 1)
4155                 fib_select_path(net, &res, &fl4, NULL);
4156
4157         if (check_mtu) {
4158                 mtu = ip_mtu_from_fib_result(&res, params->ipv4_dst);
4159                 if (params->tot_len > mtu)
4160                         return 0;
4161         }
4162
4163         nh = &res.fi->fib_nh[res.nh_sel];
4164
4165         /* do not handle lwt encaps right now */
4166         if (nh->nh_lwtstate)
4167                 return 0;
4168
4169         dev = nh->nh_dev;
4170         if (unlikely(!dev))
4171                 return 0;
4172
4173         if (nh->nh_gw)
4174                 params->ipv4_dst = nh->nh_gw;
4175
4176         params->rt_metric = res.fi->fib_priority;
4177
4178         /* xdp and cls_bpf programs are run in RCU-bh so
4179          * rcu_read_lock_bh is not needed here
4180          */
4181         neigh = __ipv4_neigh_lookup_noref(dev, (__force u32)params->ipv4_dst);
4182         if (neigh)
4183                 return bpf_fib_set_fwd_params(params, neigh, dev);
4184
4185         return 0;
4186 }
4187 #endif
4188
4189 #if IS_ENABLED(CONFIG_IPV6)
4190 static int bpf_ipv6_fib_lookup(struct net *net, struct bpf_fib_lookup *params,
4191                                u32 flags, bool check_mtu)
4192 {
4193         struct in6_addr *src = (struct in6_addr *) params->ipv6_src;
4194         struct in6_addr *dst = (struct in6_addr *) params->ipv6_dst;
4195         struct neighbour *neigh;
4196         struct net_device *dev;
4197         struct inet6_dev *idev;
4198         struct fib6_info *f6i;
4199         struct flowi6 fl6;
4200         int strict = 0;
4201         int oif;
4202         u32 mtu;
4203
4204         /* link local addresses are never forwarded */
4205         if (rt6_need_strict(dst) || rt6_need_strict(src))
4206                 return 0;
4207
4208         dev = dev_get_by_index_rcu(net, params->ifindex);
4209         if (unlikely(!dev))
4210                 return -ENODEV;
4211
4212         idev = __in6_dev_get_safely(dev);
4213         if (unlikely(!idev || !net->ipv6.devconf_all->forwarding))
4214                 return 0;
4215
4216         if (flags & BPF_FIB_LOOKUP_OUTPUT) {
4217                 fl6.flowi6_iif = 1;
4218                 oif = fl6.flowi6_oif = params->ifindex;
4219         } else {
4220                 oif = fl6.flowi6_iif = params->ifindex;
4221                 fl6.flowi6_oif = 0;
4222                 strict = RT6_LOOKUP_F_HAS_SADDR;
4223         }
4224         fl6.flowlabel = params->flowinfo;
4225         fl6.flowi6_scope = 0;
4226         fl6.flowi6_flags = 0;
4227         fl6.mp_hash = 0;
4228
4229         fl6.flowi6_proto = params->l4_protocol;
4230         fl6.daddr = *dst;
4231         fl6.saddr = *src;
4232         fl6.fl6_sport = params->sport;
4233         fl6.fl6_dport = params->dport;
4234
4235         if (flags & BPF_FIB_LOOKUP_DIRECT) {
4236                 u32 tbid = l3mdev_fib_table_rcu(dev) ? : RT_TABLE_MAIN;
4237                 struct fib6_table *tb;
4238
4239                 tb = ipv6_stub->fib6_get_table(net, tbid);
4240                 if (unlikely(!tb))
4241                         return 0;
4242
4243                 f6i = ipv6_stub->fib6_table_lookup(net, tb, oif, &fl6, strict);
4244         } else {
4245                 fl6.flowi6_mark = 0;
4246                 fl6.flowi6_secid = 0;
4247                 fl6.flowi6_tun_key.tun_id = 0;
4248                 fl6.flowi6_uid = sock_net_uid(net, NULL);
4249
4250                 f6i = ipv6_stub->fib6_lookup(net, oif, &fl6, strict);
4251         }
4252
4253         if (unlikely(IS_ERR_OR_NULL(f6i) || f6i == net->ipv6.fib6_null_entry))
4254                 return 0;
4255
4256         if (unlikely(f6i->fib6_flags & RTF_REJECT ||
4257             f6i->fib6_type != RTN_UNICAST))
4258                 return 0;
4259
4260         if (f6i->fib6_nsiblings && fl6.flowi6_oif == 0)
4261                 f6i = ipv6_stub->fib6_multipath_select(net, f6i, &fl6,
4262                                                        fl6.flowi6_oif, NULL,
4263                                                        strict);
4264
4265         if (check_mtu) {
4266                 mtu = ipv6_stub->ip6_mtu_from_fib6(f6i, dst, src);
4267                 if (params->tot_len > mtu)
4268                         return 0;
4269         }
4270
4271         if (f6i->fib6_nh.nh_lwtstate)
4272                 return 0;
4273
4274         if (f6i->fib6_flags & RTF_GATEWAY)
4275                 *dst = f6i->fib6_nh.nh_gw;
4276
4277         dev = f6i->fib6_nh.nh_dev;
4278         params->rt_metric = f6i->fib6_metric;
4279
4280         /* xdp and cls_bpf programs are run in RCU-bh so rcu_read_lock_bh is
4281          * not needed here. Can not use __ipv6_neigh_lookup_noref here
4282          * because we need to get nd_tbl via the stub
4283          */
4284         neigh = ___neigh_lookup_noref(ipv6_stub->nd_tbl, neigh_key_eq128,
4285                                       ndisc_hashfn, dst, dev);
4286         if (neigh)
4287                 return bpf_fib_set_fwd_params(params, neigh, dev);
4288
4289         return 0;
4290 }
4291 #endif
4292
4293 BPF_CALL_4(bpf_xdp_fib_lookup, struct xdp_buff *, ctx,
4294            struct bpf_fib_lookup *, params, int, plen, u32, flags)
4295 {
4296         if (plen < sizeof(*params))
4297                 return -EINVAL;
4298
4299         if (flags & ~(BPF_FIB_LOOKUP_DIRECT | BPF_FIB_LOOKUP_OUTPUT))
4300                 return -EINVAL;
4301
4302         switch (params->family) {
4303 #if IS_ENABLED(CONFIG_INET)
4304         case AF_INET:
4305                 return bpf_ipv4_fib_lookup(dev_net(ctx->rxq->dev), params,
4306                                            flags, true);
4307 #endif
4308 #if IS_ENABLED(CONFIG_IPV6)
4309         case AF_INET6:
4310                 return bpf_ipv6_fib_lookup(dev_net(ctx->rxq->dev), params,
4311                                            flags, true);
4312 #endif
4313         }
4314         return -EAFNOSUPPORT;
4315 }
4316
4317 static const struct bpf_func_proto bpf_xdp_fib_lookup_proto = {
4318         .func           = bpf_xdp_fib_lookup,
4319         .gpl_only       = true,
4320         .ret_type       = RET_INTEGER,
4321         .arg1_type      = ARG_PTR_TO_CTX,
4322         .arg2_type      = ARG_PTR_TO_MEM,
4323         .arg3_type      = ARG_CONST_SIZE,
4324         .arg4_type      = ARG_ANYTHING,
4325 };
4326
4327 BPF_CALL_4(bpf_skb_fib_lookup, struct sk_buff *, skb,
4328            struct bpf_fib_lookup *, params, int, plen, u32, flags)
4329 {
4330         struct net *net = dev_net(skb->dev);
4331         int index = -EAFNOSUPPORT;
4332
4333         if (plen < sizeof(*params))
4334                 return -EINVAL;
4335
4336         if (flags & ~(BPF_FIB_LOOKUP_DIRECT | BPF_FIB_LOOKUP_OUTPUT))
4337                 return -EINVAL;
4338
4339         switch (params->family) {
4340 #if IS_ENABLED(CONFIG_INET)
4341         case AF_INET:
4342                 index = bpf_ipv4_fib_lookup(net, params, flags, false);
4343                 break;
4344 #endif
4345 #if IS_ENABLED(CONFIG_IPV6)
4346         case AF_INET6:
4347                 index = bpf_ipv6_fib_lookup(net, params, flags, false);
4348                 break;
4349 #endif
4350         }
4351
4352         if (index > 0) {
4353                 struct net_device *dev;
4354
4355                 dev = dev_get_by_index_rcu(net, index);
4356                 if (!is_skb_forwardable(dev, skb))
4357                         index = 0;
4358         }
4359
4360         return index;
4361 }
4362
4363 static const struct bpf_func_proto bpf_skb_fib_lookup_proto = {
4364         .func           = bpf_skb_fib_lookup,
4365         .gpl_only       = true,
4366         .ret_type       = RET_INTEGER,
4367         .arg1_type      = ARG_PTR_TO_CTX,
4368         .arg2_type      = ARG_PTR_TO_MEM,
4369         .arg3_type      = ARG_CONST_SIZE,
4370         .arg4_type      = ARG_ANYTHING,
4371 };
4372
4373 #if IS_ENABLED(CONFIG_IPV6_SEG6_BPF)
4374 static int bpf_push_seg6_encap(struct sk_buff *skb, u32 type, void *hdr, u32 len)
4375 {
4376         int err;
4377         struct ipv6_sr_hdr *srh = (struct ipv6_sr_hdr *)hdr;
4378
4379         if (!seg6_validate_srh(srh, len))
4380                 return -EINVAL;
4381
4382         switch (type) {
4383         case BPF_LWT_ENCAP_SEG6_INLINE:
4384                 if (skb->protocol != htons(ETH_P_IPV6))
4385                         return -EBADMSG;
4386
4387                 err = seg6_do_srh_inline(skb, srh);
4388                 break;
4389         case BPF_LWT_ENCAP_SEG6:
4390                 skb_reset_inner_headers(skb);
4391                 skb->encapsulation = 1;
4392                 err = seg6_do_srh_encap(skb, srh, IPPROTO_IPV6);
4393                 break;
4394         default:
4395                 return -EINVAL;
4396         }
4397
4398         bpf_compute_data_pointers(skb);
4399         if (err)
4400                 return err;
4401
4402         ipv6_hdr(skb)->payload_len = htons(skb->len - sizeof(struct ipv6hdr));
4403         skb_set_transport_header(skb, sizeof(struct ipv6hdr));
4404
4405         return seg6_lookup_nexthop(skb, NULL, 0);
4406 }
4407 #endif /* CONFIG_IPV6_SEG6_BPF */
4408
4409 BPF_CALL_4(bpf_lwt_push_encap, struct sk_buff *, skb, u32, type, void *, hdr,
4410            u32, len)
4411 {
4412         switch (type) {
4413 #if IS_ENABLED(CONFIG_IPV6_SEG6_BPF)
4414         case BPF_LWT_ENCAP_SEG6:
4415         case BPF_LWT_ENCAP_SEG6_INLINE:
4416                 return bpf_push_seg6_encap(skb, type, hdr, len);
4417 #endif
4418         default:
4419                 return -EINVAL;
4420         }
4421 }
4422
4423 static const struct bpf_func_proto bpf_lwt_push_encap_proto = {
4424         .func           = bpf_lwt_push_encap,
4425         .gpl_only       = false,
4426         .ret_type       = RET_INTEGER,
4427         .arg1_type      = ARG_PTR_TO_CTX,
4428         .arg2_type      = ARG_ANYTHING,
4429         .arg3_type      = ARG_PTR_TO_MEM,
4430         .arg4_type      = ARG_CONST_SIZE
4431 };
4432
4433 BPF_CALL_4(bpf_lwt_seg6_store_bytes, struct sk_buff *, skb, u32, offset,
4434            const void *, from, u32, len)
4435 {
4436 #if IS_ENABLED(CONFIG_IPV6_SEG6_BPF)
4437         struct seg6_bpf_srh_state *srh_state =
4438                 this_cpu_ptr(&seg6_bpf_srh_states);
4439         void *srh_tlvs, *srh_end, *ptr;
4440         struct ipv6_sr_hdr *srh;
4441         int srhoff = 0;
4442
4443         if (ipv6_find_hdr(skb, &srhoff, IPPROTO_ROUTING, NULL, NULL) < 0)
4444                 return -EINVAL;
4445
4446         srh = (struct ipv6_sr_hdr *)(skb->data + srhoff);
4447         srh_tlvs = (void *)((char *)srh + ((srh->first_segment + 1) << 4));
4448         srh_end = (void *)((char *)srh + sizeof(*srh) + srh_state->hdrlen);
4449
4450         ptr = skb->data + offset;
4451         if (ptr >= srh_tlvs && ptr + len <= srh_end)
4452                 srh_state->valid = 0;
4453         else if (ptr < (void *)&srh->flags ||
4454                  ptr + len > (void *)&srh->segments)
4455                 return -EFAULT;
4456
4457         if (unlikely(bpf_try_make_writable(skb, offset + len)))
4458                 return -EFAULT;
4459
4460         memcpy(skb->data + offset, from, len);
4461         return 0;
4462 #else /* CONFIG_IPV6_SEG6_BPF */
4463         return -EOPNOTSUPP;
4464 #endif
4465 }
4466
4467 static const struct bpf_func_proto bpf_lwt_seg6_store_bytes_proto = {
4468         .func           = bpf_lwt_seg6_store_bytes,
4469         .gpl_only       = false,
4470         .ret_type       = RET_INTEGER,
4471         .arg1_type      = ARG_PTR_TO_CTX,
4472         .arg2_type      = ARG_ANYTHING,
4473         .arg3_type      = ARG_PTR_TO_MEM,
4474         .arg4_type      = ARG_CONST_SIZE
4475 };
4476
4477 BPF_CALL_4(bpf_lwt_seg6_action, struct sk_buff *, skb,
4478            u32, action, void *, param, u32, param_len)
4479 {
4480 #if IS_ENABLED(CONFIG_IPV6_SEG6_BPF)
4481         struct seg6_bpf_srh_state *srh_state =
4482                 this_cpu_ptr(&seg6_bpf_srh_states);
4483         struct ipv6_sr_hdr *srh;
4484         int srhoff = 0;
4485         int err;
4486
4487         if (ipv6_find_hdr(skb, &srhoff, IPPROTO_ROUTING, NULL, NULL) < 0)
4488                 return -EINVAL;
4489         srh = (struct ipv6_sr_hdr *)(skb->data + srhoff);
4490
4491         if (!srh_state->valid) {
4492                 if (unlikely((srh_state->hdrlen & 7) != 0))
4493                         return -EBADMSG;
4494
4495                 srh->hdrlen = (u8)(srh_state->hdrlen >> 3);
4496                 if (unlikely(!seg6_validate_srh(srh, (srh->hdrlen + 1) << 3)))
4497                         return -EBADMSG;
4498
4499                 srh_state->valid = 1;
4500         }
4501
4502         switch (action) {
4503         case SEG6_LOCAL_ACTION_END_X:
4504                 if (param_len != sizeof(struct in6_addr))
4505                         return -EINVAL;
4506                 return seg6_lookup_nexthop(skb, (struct in6_addr *)param, 0);
4507         case SEG6_LOCAL_ACTION_END_T:
4508                 if (param_len != sizeof(int))
4509                         return -EINVAL;
4510                 return seg6_lookup_nexthop(skb, NULL, *(int *)param);
4511         case SEG6_LOCAL_ACTION_END_B6:
4512                 err = bpf_push_seg6_encap(skb, BPF_LWT_ENCAP_SEG6_INLINE,
4513                                           param, param_len);
4514                 if (!err)
4515                         srh_state->hdrlen =
4516                                 ((struct ipv6_sr_hdr *)param)->hdrlen << 3;
4517                 return err;
4518         case SEG6_LOCAL_ACTION_END_B6_ENCAP:
4519                 err = bpf_push_seg6_encap(skb, BPF_LWT_ENCAP_SEG6,
4520                                           param, param_len);
4521                 if (!err)
4522                         srh_state->hdrlen =
4523                                 ((struct ipv6_sr_hdr *)param)->hdrlen << 3;
4524                 return err;
4525         default:
4526                 return -EINVAL;
4527         }
4528 #else /* CONFIG_IPV6_SEG6_BPF */
4529         return -EOPNOTSUPP;
4530 #endif
4531 }
4532
4533 static const struct bpf_func_proto bpf_lwt_seg6_action_proto = {
4534         .func           = bpf_lwt_seg6_action,
4535         .gpl_only       = false,
4536         .ret_type       = RET_INTEGER,
4537         .arg1_type      = ARG_PTR_TO_CTX,
4538         .arg2_type      = ARG_ANYTHING,
4539         .arg3_type      = ARG_PTR_TO_MEM,
4540         .arg4_type      = ARG_CONST_SIZE
4541 };
4542
4543 BPF_CALL_3(bpf_lwt_seg6_adjust_srh, struct sk_buff *, skb, u32, offset,
4544            s32, len)
4545 {
4546 #if IS_ENABLED(CONFIG_IPV6_SEG6_BPF)
4547         struct seg6_bpf_srh_state *srh_state =
4548                 this_cpu_ptr(&seg6_bpf_srh_states);
4549         void *srh_end, *srh_tlvs, *ptr;
4550         struct ipv6_sr_hdr *srh;
4551         struct ipv6hdr *hdr;
4552         int srhoff = 0;
4553         int ret;
4554
4555         if (ipv6_find_hdr(skb, &srhoff, IPPROTO_ROUTING, NULL, NULL) < 0)
4556                 return -EINVAL;
4557         srh = (struct ipv6_sr_hdr *)(skb->data + srhoff);
4558
4559         srh_tlvs = (void *)((unsigned char *)srh + sizeof(*srh) +
4560                         ((srh->first_segment + 1) << 4));
4561         srh_end = (void *)((unsigned char *)srh + sizeof(*srh) +
4562                         srh_state->hdrlen);
4563         ptr = skb->data + offset;
4564
4565         if (unlikely(ptr < srh_tlvs || ptr > srh_end))
4566                 return -EFAULT;
4567         if (unlikely(len < 0 && (void *)((char *)ptr - len) > srh_end))
4568                 return -EFAULT;
4569
4570         if (len > 0) {
4571                 ret = skb_cow_head(skb, len);
4572                 if (unlikely(ret < 0))
4573                         return ret;
4574
4575                 ret = bpf_skb_net_hdr_push(skb, offset, len);
4576         } else {
4577                 ret = bpf_skb_net_hdr_pop(skb, offset, -1 * len);
4578         }
4579
4580         bpf_compute_data_pointers(skb);
4581         if (unlikely(ret < 0))
4582                 return ret;
4583
4584         hdr = (struct ipv6hdr *)skb->data;
4585         hdr->payload_len = htons(skb->len - sizeof(struct ipv6hdr));
4586
4587         srh_state->hdrlen += len;
4588         srh_state->valid = 0;
4589         return 0;
4590 #else /* CONFIG_IPV6_SEG6_BPF */
4591         return -EOPNOTSUPP;
4592 #endif
4593 }
4594
4595 static const struct bpf_func_proto bpf_lwt_seg6_adjust_srh_proto = {
4596         .func           = bpf_lwt_seg6_adjust_srh,
4597         .gpl_only       = false,
4598         .ret_type       = RET_INTEGER,
4599         .arg1_type      = ARG_PTR_TO_CTX,
4600         .arg2_type      = ARG_ANYTHING,
4601         .arg3_type      = ARG_ANYTHING,
4602 };
4603
4604 bool bpf_helper_changes_pkt_data(void *func)
4605 {
4606         if (func == bpf_skb_vlan_push ||
4607             func == bpf_skb_vlan_pop ||
4608             func == bpf_skb_store_bytes ||
4609             func == bpf_skb_change_proto ||
4610             func == bpf_skb_change_head ||
4611             func == bpf_skb_change_tail ||
4612             func == bpf_skb_adjust_room ||
4613             func == bpf_skb_pull_data ||
4614             func == bpf_clone_redirect ||
4615             func == bpf_l3_csum_replace ||
4616             func == bpf_l4_csum_replace ||
4617             func == bpf_xdp_adjust_head ||
4618             func == bpf_xdp_adjust_meta ||
4619             func == bpf_msg_pull_data ||
4620             func == bpf_xdp_adjust_tail ||
4621             func == bpf_lwt_push_encap ||
4622             func == bpf_lwt_seg6_store_bytes ||
4623             func == bpf_lwt_seg6_adjust_srh ||
4624             func == bpf_lwt_seg6_action
4625             )
4626                 return true;
4627
4628         return false;
4629 }
4630
4631 static const struct bpf_func_proto *
4632 bpf_base_func_proto(enum bpf_func_id func_id)
4633 {
4634         switch (func_id) {
4635         case BPF_FUNC_map_lookup_elem:
4636                 return &bpf_map_lookup_elem_proto;
4637         case BPF_FUNC_map_update_elem:
4638                 return &bpf_map_update_elem_proto;
4639         case BPF_FUNC_map_delete_elem:
4640                 return &bpf_map_delete_elem_proto;
4641         case BPF_FUNC_get_prandom_u32:
4642                 return &bpf_get_prandom_u32_proto;
4643         case BPF_FUNC_get_smp_processor_id:
4644                 return &bpf_get_raw_smp_processor_id_proto;
4645         case BPF_FUNC_get_numa_node_id:
4646                 return &bpf_get_numa_node_id_proto;
4647         case BPF_FUNC_tail_call:
4648                 return &bpf_tail_call_proto;
4649         case BPF_FUNC_ktime_get_ns:
4650                 return &bpf_ktime_get_ns_proto;
4651         case BPF_FUNC_trace_printk:
4652                 if (capable(CAP_SYS_ADMIN))
4653                         return bpf_get_trace_printk_proto();
4654         default:
4655                 return NULL;
4656         }
4657 }
4658
4659 static const struct bpf_func_proto *
4660 sock_filter_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
4661 {
4662         switch (func_id) {
4663         /* inet and inet6 sockets are created in a process
4664          * context so there is always a valid uid/gid
4665          */
4666         case BPF_FUNC_get_current_uid_gid:
4667                 return &bpf_get_current_uid_gid_proto;
4668         default:
4669                 return bpf_base_func_proto(func_id);
4670         }
4671 }
4672
4673 static const struct bpf_func_proto *
4674 sock_addr_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
4675 {
4676         switch (func_id) {
4677         /* inet and inet6 sockets are created in a process
4678          * context so there is always a valid uid/gid
4679          */
4680         case BPF_FUNC_get_current_uid_gid:
4681                 return &bpf_get_current_uid_gid_proto;
4682         case BPF_FUNC_bind:
4683                 switch (prog->expected_attach_type) {
4684                 case BPF_CGROUP_INET4_CONNECT:
4685                 case BPF_CGROUP_INET6_CONNECT:
4686                         return &bpf_bind_proto;
4687                 default:
4688                         return NULL;
4689                 }
4690         default:
4691                 return bpf_base_func_proto(func_id);
4692         }
4693 }
4694
4695 static const struct bpf_func_proto *
4696 sk_filter_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
4697 {
4698         switch (func_id) {
4699         case BPF_FUNC_skb_load_bytes:
4700                 return &bpf_skb_load_bytes_proto;
4701         case BPF_FUNC_skb_load_bytes_relative:
4702                 return &bpf_skb_load_bytes_relative_proto;
4703         case BPF_FUNC_get_socket_cookie:
4704                 return &bpf_get_socket_cookie_proto;
4705         case BPF_FUNC_get_socket_uid:
4706                 return &bpf_get_socket_uid_proto;
4707         default:
4708                 return bpf_base_func_proto(func_id);
4709         }
4710 }
4711
4712 static const struct bpf_func_proto *
4713 tc_cls_act_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
4714 {
4715         switch (func_id) {
4716         case BPF_FUNC_skb_store_bytes:
4717                 return &bpf_skb_store_bytes_proto;
4718         case BPF_FUNC_skb_load_bytes:
4719                 return &bpf_skb_load_bytes_proto;
4720         case BPF_FUNC_skb_load_bytes_relative:
4721                 return &bpf_skb_load_bytes_relative_proto;
4722         case BPF_FUNC_skb_pull_data:
4723                 return &bpf_skb_pull_data_proto;
4724         case BPF_FUNC_csum_diff:
4725                 return &bpf_csum_diff_proto;
4726         case BPF_FUNC_csum_update:
4727                 return &bpf_csum_update_proto;
4728         case BPF_FUNC_l3_csum_replace:
4729                 return &bpf_l3_csum_replace_proto;
4730         case BPF_FUNC_l4_csum_replace:
4731                 return &bpf_l4_csum_replace_proto;
4732         case BPF_FUNC_clone_redirect:
4733                 return &bpf_clone_redirect_proto;
4734         case BPF_FUNC_get_cgroup_classid:
4735                 return &bpf_get_cgroup_classid_proto;
4736         case BPF_FUNC_skb_vlan_push:
4737                 return &bpf_skb_vlan_push_proto;
4738         case BPF_FUNC_skb_vlan_pop:
4739                 return &bpf_skb_vlan_pop_proto;
4740         case BPF_FUNC_skb_change_proto:
4741                 return &bpf_skb_change_proto_proto;
4742         case BPF_FUNC_skb_change_type:
4743                 return &bpf_skb_change_type_proto;
4744         case BPF_FUNC_skb_adjust_room:
4745                 return &bpf_skb_adjust_room_proto;
4746         case BPF_FUNC_skb_change_tail:
4747                 return &bpf_skb_change_tail_proto;
4748         case BPF_FUNC_skb_get_tunnel_key:
4749                 return &bpf_skb_get_tunnel_key_proto;
4750         case BPF_FUNC_skb_set_tunnel_key:
4751                 return bpf_get_skb_set_tunnel_proto(func_id);
4752         case BPF_FUNC_skb_get_tunnel_opt:
4753                 return &bpf_skb_get_tunnel_opt_proto;
4754         case BPF_FUNC_skb_set_tunnel_opt:
4755                 return bpf_get_skb_set_tunnel_proto(func_id);
4756         case BPF_FUNC_redirect:
4757                 return &bpf_redirect_proto;
4758         case BPF_FUNC_get_route_realm:
4759                 return &bpf_get_route_realm_proto;
4760         case BPF_FUNC_get_hash_recalc:
4761                 return &bpf_get_hash_recalc_proto;
4762         case BPF_FUNC_set_hash_invalid:
4763                 return &bpf_set_hash_invalid_proto;
4764         case BPF_FUNC_set_hash:
4765                 return &bpf_set_hash_proto;
4766         case BPF_FUNC_perf_event_output:
4767                 return &bpf_skb_event_output_proto;
4768         case BPF_FUNC_get_smp_processor_id:
4769                 return &bpf_get_smp_processor_id_proto;
4770         case BPF_FUNC_skb_under_cgroup:
4771                 return &bpf_skb_under_cgroup_proto;
4772         case BPF_FUNC_get_socket_cookie:
4773                 return &bpf_get_socket_cookie_proto;
4774         case BPF_FUNC_get_socket_uid:
4775                 return &bpf_get_socket_uid_proto;
4776         case BPF_FUNC_fib_lookup:
4777                 return &bpf_skb_fib_lookup_proto;
4778 #ifdef CONFIG_XFRM
4779         case BPF_FUNC_skb_get_xfrm_state:
4780                 return &bpf_skb_get_xfrm_state_proto;
4781 #endif
4782 #ifdef CONFIG_SOCK_CGROUP_DATA
4783         case BPF_FUNC_skb_cgroup_id:
4784                 return &bpf_skb_cgroup_id_proto;
4785 #endif
4786         default:
4787                 return bpf_base_func_proto(func_id);
4788         }
4789 }
4790
4791 static const struct bpf_func_proto *
4792 xdp_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
4793 {
4794         switch (func_id) {
4795         case BPF_FUNC_perf_event_output:
4796                 return &bpf_xdp_event_output_proto;
4797         case BPF_FUNC_get_smp_processor_id:
4798                 return &bpf_get_smp_processor_id_proto;
4799         case BPF_FUNC_csum_diff:
4800                 return &bpf_csum_diff_proto;
4801         case BPF_FUNC_xdp_adjust_head:
4802                 return &bpf_xdp_adjust_head_proto;
4803         case BPF_FUNC_xdp_adjust_meta:
4804                 return &bpf_xdp_adjust_meta_proto;
4805         case BPF_FUNC_redirect:
4806                 return &bpf_xdp_redirect_proto;
4807         case BPF_FUNC_redirect_map:
4808                 return &bpf_xdp_redirect_map_proto;
4809         case BPF_FUNC_xdp_adjust_tail:
4810                 return &bpf_xdp_adjust_tail_proto;
4811         case BPF_FUNC_fib_lookup:
4812                 return &bpf_xdp_fib_lookup_proto;
4813         default:
4814                 return bpf_base_func_proto(func_id);
4815         }
4816 }
4817
4818 static const struct bpf_func_proto *
4819 sock_ops_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
4820 {
4821         switch (func_id) {
4822         case BPF_FUNC_setsockopt:
4823                 return &bpf_setsockopt_proto;
4824         case BPF_FUNC_getsockopt:
4825                 return &bpf_getsockopt_proto;
4826         case BPF_FUNC_sock_ops_cb_flags_set:
4827                 return &bpf_sock_ops_cb_flags_set_proto;
4828         case BPF_FUNC_sock_map_update:
4829                 return &bpf_sock_map_update_proto;
4830         case BPF_FUNC_sock_hash_update:
4831                 return &bpf_sock_hash_update_proto;
4832         default:
4833                 return bpf_base_func_proto(func_id);
4834         }
4835 }
4836
4837 static const struct bpf_func_proto *
4838 sk_msg_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
4839 {
4840         switch (func_id) {
4841         case BPF_FUNC_msg_redirect_map:
4842                 return &bpf_msg_redirect_map_proto;
4843         case BPF_FUNC_msg_redirect_hash:
4844                 return &bpf_msg_redirect_hash_proto;
4845         case BPF_FUNC_msg_apply_bytes:
4846                 return &bpf_msg_apply_bytes_proto;
4847         case BPF_FUNC_msg_cork_bytes:
4848                 return &bpf_msg_cork_bytes_proto;
4849         case BPF_FUNC_msg_pull_data:
4850                 return &bpf_msg_pull_data_proto;
4851         default:
4852                 return bpf_base_func_proto(func_id);
4853         }
4854 }
4855
4856 static const struct bpf_func_proto *
4857 sk_skb_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
4858 {
4859         switch (func_id) {
4860         case BPF_FUNC_skb_store_bytes:
4861                 return &bpf_skb_store_bytes_proto;
4862         case BPF_FUNC_skb_load_bytes:
4863                 return &bpf_skb_load_bytes_proto;
4864         case BPF_FUNC_skb_pull_data:
4865                 return &bpf_skb_pull_data_proto;
4866         case BPF_FUNC_skb_change_tail:
4867                 return &bpf_skb_change_tail_proto;
4868         case BPF_FUNC_skb_change_head:
4869                 return &bpf_skb_change_head_proto;
4870         case BPF_FUNC_get_socket_cookie:
4871                 return &bpf_get_socket_cookie_proto;
4872         case BPF_FUNC_get_socket_uid:
4873                 return &bpf_get_socket_uid_proto;
4874         case BPF_FUNC_sk_redirect_map:
4875                 return &bpf_sk_redirect_map_proto;
4876         case BPF_FUNC_sk_redirect_hash:
4877                 return &bpf_sk_redirect_hash_proto;
4878         default:
4879                 return bpf_base_func_proto(func_id);
4880         }
4881 }
4882
4883 static const struct bpf_func_proto *
4884 lwt_out_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
4885 {
4886         switch (func_id) {
4887         case BPF_FUNC_skb_load_bytes:
4888                 return &bpf_skb_load_bytes_proto;
4889         case BPF_FUNC_skb_pull_data:
4890                 return &bpf_skb_pull_data_proto;
4891         case BPF_FUNC_csum_diff:
4892                 return &bpf_csum_diff_proto;
4893         case BPF_FUNC_get_cgroup_classid:
4894                 return &bpf_get_cgroup_classid_proto;
4895         case BPF_FUNC_get_route_realm:
4896                 return &bpf_get_route_realm_proto;
4897         case BPF_FUNC_get_hash_recalc:
4898                 return &bpf_get_hash_recalc_proto;
4899         case BPF_FUNC_perf_event_output:
4900                 return &bpf_skb_event_output_proto;
4901         case BPF_FUNC_get_smp_processor_id:
4902                 return &bpf_get_smp_processor_id_proto;
4903         case BPF_FUNC_skb_under_cgroup:
4904                 return &bpf_skb_under_cgroup_proto;
4905         default:
4906                 return bpf_base_func_proto(func_id);
4907         }
4908 }
4909
4910 static const struct bpf_func_proto *
4911 lwt_in_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
4912 {
4913         switch (func_id) {
4914         case BPF_FUNC_lwt_push_encap:
4915                 return &bpf_lwt_push_encap_proto;
4916         default:
4917                 return lwt_out_func_proto(func_id, prog);
4918         }
4919 }
4920
4921 static const struct bpf_func_proto *
4922 lwt_xmit_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
4923 {
4924         switch (func_id) {
4925         case BPF_FUNC_skb_get_tunnel_key:
4926                 return &bpf_skb_get_tunnel_key_proto;
4927         case BPF_FUNC_skb_set_tunnel_key:
4928                 return bpf_get_skb_set_tunnel_proto(func_id);
4929         case BPF_FUNC_skb_get_tunnel_opt:
4930                 return &bpf_skb_get_tunnel_opt_proto;
4931         case BPF_FUNC_skb_set_tunnel_opt:
4932                 return bpf_get_skb_set_tunnel_proto(func_id);
4933         case BPF_FUNC_redirect:
4934                 return &bpf_redirect_proto;
4935         case BPF_FUNC_clone_redirect:
4936                 return &bpf_clone_redirect_proto;
4937         case BPF_FUNC_skb_change_tail:
4938                 return &bpf_skb_change_tail_proto;
4939         case BPF_FUNC_skb_change_head:
4940                 return &bpf_skb_change_head_proto;
4941         case BPF_FUNC_skb_store_bytes:
4942                 return &bpf_skb_store_bytes_proto;
4943         case BPF_FUNC_csum_update:
4944                 return &bpf_csum_update_proto;
4945         case BPF_FUNC_l3_csum_replace:
4946                 return &bpf_l3_csum_replace_proto;
4947         case BPF_FUNC_l4_csum_replace:
4948                 return &bpf_l4_csum_replace_proto;
4949         case BPF_FUNC_set_hash_invalid:
4950                 return &bpf_set_hash_invalid_proto;
4951         default:
4952                 return lwt_out_func_proto(func_id, prog);
4953         }
4954 }
4955
4956 static const struct bpf_func_proto *
4957 lwt_seg6local_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
4958 {
4959         switch (func_id) {
4960         case BPF_FUNC_lwt_seg6_store_bytes:
4961                 return &bpf_lwt_seg6_store_bytes_proto;
4962         case BPF_FUNC_lwt_seg6_action:
4963                 return &bpf_lwt_seg6_action_proto;
4964         case BPF_FUNC_lwt_seg6_adjust_srh:
4965                 return &bpf_lwt_seg6_adjust_srh_proto;
4966         default:
4967                 return lwt_out_func_proto(func_id, prog);
4968         }
4969 }
4970
4971 static bool bpf_skb_is_valid_access(int off, int size, enum bpf_access_type type,
4972                                     const struct bpf_prog *prog,
4973                                     struct bpf_insn_access_aux *info)
4974 {
4975         const int size_default = sizeof(__u32);
4976
4977         if (off < 0 || off >= sizeof(struct __sk_buff))
4978                 return false;
4979
4980         /* The verifier guarantees that size > 0. */
4981         if (off % size != 0)
4982                 return false;
4983
4984         switch (off) {
4985         case bpf_ctx_range_till(struct __sk_buff, cb[0], cb[4]):
4986                 if (off + size > offsetofend(struct __sk_buff, cb[4]))
4987                         return false;
4988                 break;
4989         case bpf_ctx_range_till(struct __sk_buff, remote_ip6[0], remote_ip6[3]):
4990         case bpf_ctx_range_till(struct __sk_buff, local_ip6[0], local_ip6[3]):
4991         case bpf_ctx_range_till(struct __sk_buff, remote_ip4, remote_ip4):
4992         case bpf_ctx_range_till(struct __sk_buff, local_ip4, local_ip4):
4993         case bpf_ctx_range(struct __sk_buff, data):
4994         case bpf_ctx_range(struct __sk_buff, data_meta):
4995         case bpf_ctx_range(struct __sk_buff, data_end):
4996                 if (size != size_default)
4997                         return false;
4998                 break;
4999         default:
5000                 /* Only narrow read access allowed for now. */
5001                 if (type == BPF_WRITE) {
5002                         if (size != size_default)
5003                                 return false;
5004                 } else {
5005                         bpf_ctx_record_field_size(info, size_default);
5006                         if (!bpf_ctx_narrow_access_ok(off, size, size_default))
5007                                 return false;
5008                 }
5009         }
5010
5011         return true;
5012 }
5013
5014 static bool sk_filter_is_valid_access(int off, int size,
5015                                       enum bpf_access_type type,
5016                                       const struct bpf_prog *prog,
5017                                       struct bpf_insn_access_aux *info)
5018 {
5019         switch (off) {
5020         case bpf_ctx_range(struct __sk_buff, tc_classid):
5021         case bpf_ctx_range(struct __sk_buff, data):
5022         case bpf_ctx_range(struct __sk_buff, data_meta):
5023         case bpf_ctx_range(struct __sk_buff, data_end):
5024         case bpf_ctx_range_till(struct __sk_buff, family, local_port):
5025                 return false;
5026         }
5027
5028         if (type == BPF_WRITE) {
5029                 switch (off) {
5030                 case bpf_ctx_range_till(struct __sk_buff, cb[0], cb[4]):
5031                         break;
5032                 default:
5033                         return false;
5034                 }
5035         }
5036
5037         return bpf_skb_is_valid_access(off, size, type, prog, info);
5038 }
5039
5040 static bool lwt_is_valid_access(int off, int size,
5041                                 enum bpf_access_type type,
5042                                 const struct bpf_prog *prog,
5043                                 struct bpf_insn_access_aux *info)
5044 {
5045         switch (off) {
5046         case bpf_ctx_range(struct __sk_buff, tc_classid):
5047         case bpf_ctx_range_till(struct __sk_buff, family, local_port):
5048         case bpf_ctx_range(struct __sk_buff, data_meta):
5049                 return false;
5050         }
5051
5052         if (type == BPF_WRITE) {
5053                 switch (off) {
5054                 case bpf_ctx_range(struct __sk_buff, mark):
5055                 case bpf_ctx_range(struct __sk_buff, priority):
5056                 case bpf_ctx_range_till(struct __sk_buff, cb[0], cb[4]):
5057                         break;
5058                 default:
5059                         return false;
5060                 }
5061         }
5062
5063         switch (off) {
5064         case bpf_ctx_range(struct __sk_buff, data):
5065                 info->reg_type = PTR_TO_PACKET;
5066                 break;
5067         case bpf_ctx_range(struct __sk_buff, data_end):
5068                 info->reg_type = PTR_TO_PACKET_END;
5069                 break;
5070         }
5071
5072         return bpf_skb_is_valid_access(off, size, type, prog, info);
5073 }
5074
5075 /* Attach type specific accesses */
5076 static bool __sock_filter_check_attach_type(int off,
5077                                             enum bpf_access_type access_type,
5078                                             enum bpf_attach_type attach_type)
5079 {
5080         switch (off) {
5081         case offsetof(struct bpf_sock, bound_dev_if):
5082         case offsetof(struct bpf_sock, mark):
5083         case offsetof(struct bpf_sock, priority):
5084                 switch (attach_type) {
5085                 case BPF_CGROUP_INET_SOCK_CREATE:
5086                         goto full_access;
5087                 default:
5088                         return false;
5089                 }
5090         case bpf_ctx_range(struct bpf_sock, src_ip4):
5091                 switch (attach_type) {
5092                 case BPF_CGROUP_INET4_POST_BIND:
5093                         goto read_only;
5094                 default:
5095                         return false;
5096                 }
5097         case bpf_ctx_range_till(struct bpf_sock, src_ip6[0], src_ip6[3]):
5098                 switch (attach_type) {
5099                 case BPF_CGROUP_INET6_POST_BIND:
5100                         goto read_only;
5101                 default:
5102                         return false;
5103                 }
5104         case bpf_ctx_range(struct bpf_sock, src_port):
5105                 switch (attach_type) {
5106                 case BPF_CGROUP_INET4_POST_BIND:
5107                 case BPF_CGROUP_INET6_POST_BIND:
5108                         goto read_only;
5109                 default:
5110                         return false;
5111                 }
5112         }
5113 read_only:
5114         return access_type == BPF_READ;
5115 full_access:
5116         return true;
5117 }
5118
5119 static bool __sock_filter_check_size(int off, int size,
5120                                      struct bpf_insn_access_aux *info)
5121 {
5122         const int size_default = sizeof(__u32);
5123
5124         switch (off) {
5125         case bpf_ctx_range(struct bpf_sock, src_ip4):
5126         case bpf_ctx_range_till(struct bpf_sock, src_ip6[0], src_ip6[3]):
5127                 bpf_ctx_record_field_size(info, size_default);
5128                 return bpf_ctx_narrow_access_ok(off, size, size_default);
5129         }
5130
5131         return size == size_default;
5132 }
5133
5134 static bool sock_filter_is_valid_access(int off, int size,
5135                                         enum bpf_access_type type,
5136                                         const struct bpf_prog *prog,
5137                                         struct bpf_insn_access_aux *info)
5138 {
5139         if (off < 0 || off >= sizeof(struct bpf_sock))
5140                 return false;
5141         if (off % size != 0)
5142                 return false;
5143         if (!__sock_filter_check_attach_type(off, type,
5144                                              prog->expected_attach_type))
5145                 return false;
5146         if (!__sock_filter_check_size(off, size, info))
5147                 return false;
5148         return true;
5149 }
5150
5151 static int bpf_unclone_prologue(struct bpf_insn *insn_buf, bool direct_write,
5152                                 const struct bpf_prog *prog, int drop_verdict)
5153 {
5154         struct bpf_insn *insn = insn_buf;
5155
5156         if (!direct_write)
5157                 return 0;
5158
5159         /* if (!skb->cloned)
5160          *       goto start;
5161          *
5162          * (Fast-path, otherwise approximation that we might be
5163          *  a clone, do the rest in helper.)
5164          */
5165         *insn++ = BPF_LDX_MEM(BPF_B, BPF_REG_6, BPF_REG_1, CLONED_OFFSET());
5166         *insn++ = BPF_ALU32_IMM(BPF_AND, BPF_REG_6, CLONED_MASK);
5167         *insn++ = BPF_JMP_IMM(BPF_JEQ, BPF_REG_6, 0, 7);
5168
5169         /* ret = bpf_skb_pull_data(skb, 0); */
5170         *insn++ = BPF_MOV64_REG(BPF_REG_6, BPF_REG_1);
5171         *insn++ = BPF_ALU64_REG(BPF_XOR, BPF_REG_2, BPF_REG_2);
5172         *insn++ = BPF_RAW_INSN(BPF_JMP | BPF_CALL, 0, 0, 0,
5173                                BPF_FUNC_skb_pull_data);
5174         /* if (!ret)
5175          *      goto restore;
5176          * return TC_ACT_SHOT;
5177          */
5178         *insn++ = BPF_JMP_IMM(BPF_JEQ, BPF_REG_0, 0, 2);
5179         *insn++ = BPF_ALU32_IMM(BPF_MOV, BPF_REG_0, drop_verdict);
5180         *insn++ = BPF_EXIT_INSN();
5181
5182         /* restore: */
5183         *insn++ = BPF_MOV64_REG(BPF_REG_1, BPF_REG_6);
5184         /* start: */
5185         *insn++ = prog->insnsi[0];
5186
5187         return insn - insn_buf;
5188 }
5189
5190 static int bpf_gen_ld_abs(const struct bpf_insn *orig,
5191                           struct bpf_insn *insn_buf)
5192 {
5193         bool indirect = BPF_MODE(orig->code) == BPF_IND;
5194         struct bpf_insn *insn = insn_buf;
5195
5196         /* We're guaranteed here that CTX is in R6. */
5197         *insn++ = BPF_MOV64_REG(BPF_REG_1, BPF_REG_CTX);
5198         if (!indirect) {
5199                 *insn++ = BPF_MOV64_IMM(BPF_REG_2, orig->imm);
5200         } else {
5201                 *insn++ = BPF_MOV64_REG(BPF_REG_2, orig->src_reg);
5202                 if (orig->imm)
5203                         *insn++ = BPF_ALU64_IMM(BPF_ADD, BPF_REG_2, orig->imm);
5204         }
5205
5206         switch (BPF_SIZE(orig->code)) {
5207         case BPF_B:
5208                 *insn++ = BPF_EMIT_CALL(bpf_skb_load_helper_8_no_cache);
5209                 break;
5210         case BPF_H:
5211                 *insn++ = BPF_EMIT_CALL(bpf_skb_load_helper_16_no_cache);
5212                 break;
5213         case BPF_W:
5214                 *insn++ = BPF_EMIT_CALL(bpf_skb_load_helper_32_no_cache);
5215                 break;
5216         }
5217
5218         *insn++ = BPF_JMP_IMM(BPF_JSGE, BPF_REG_0, 0, 2);
5219         *insn++ = BPF_ALU32_REG(BPF_XOR, BPF_REG_0, BPF_REG_0);
5220         *insn++ = BPF_EXIT_INSN();
5221
5222         return insn - insn_buf;
5223 }
5224
5225 static int tc_cls_act_prologue(struct bpf_insn *insn_buf, bool direct_write,
5226                                const struct bpf_prog *prog)
5227 {
5228         return bpf_unclone_prologue(insn_buf, direct_write, prog, TC_ACT_SHOT);
5229 }
5230
5231 static bool tc_cls_act_is_valid_access(int off, int size,
5232                                        enum bpf_access_type type,
5233                                        const struct bpf_prog *prog,
5234                                        struct bpf_insn_access_aux *info)
5235 {
5236         if (type == BPF_WRITE) {
5237                 switch (off) {
5238                 case bpf_ctx_range(struct __sk_buff, mark):
5239                 case bpf_ctx_range(struct __sk_buff, tc_index):
5240                 case bpf_ctx_range(struct __sk_buff, priority):
5241                 case bpf_ctx_range(struct __sk_buff, tc_classid):
5242                 case bpf_ctx_range_till(struct __sk_buff, cb[0], cb[4]):
5243                         break;
5244                 default:
5245                         return false;
5246                 }
5247         }
5248
5249         switch (off) {
5250         case bpf_ctx_range(struct __sk_buff, data):
5251                 info->reg_type = PTR_TO_PACKET;
5252                 break;
5253         case bpf_ctx_range(struct __sk_buff, data_meta):
5254                 info->reg_type = PTR_TO_PACKET_META;
5255                 break;
5256         case bpf_ctx_range(struct __sk_buff, data_end):
5257                 info->reg_type = PTR_TO_PACKET_END;
5258                 break;
5259         case bpf_ctx_range_till(struct __sk_buff, family, local_port):
5260                 return false;
5261         }
5262
5263         return bpf_skb_is_valid_access(off, size, type, prog, info);
5264 }
5265
5266 static bool __is_valid_xdp_access(int off, int size)
5267 {
5268         if (off < 0 || off >= sizeof(struct xdp_md))
5269                 return false;
5270         if (off % size != 0)
5271                 return false;
5272         if (size != sizeof(__u32))
5273                 return false;
5274
5275         return true;
5276 }
5277
5278 static bool xdp_is_valid_access(int off, int size,
5279                                 enum bpf_access_type type,
5280                                 const struct bpf_prog *prog,
5281                                 struct bpf_insn_access_aux *info)
5282 {
5283         if (type == BPF_WRITE) {
5284                 if (bpf_prog_is_dev_bound(prog->aux)) {
5285                         switch (off) {
5286                         case offsetof(struct xdp_md, rx_queue_index):
5287                                 return __is_valid_xdp_access(off, size);
5288                         }
5289                 }
5290                 return false;
5291         }
5292
5293         switch (off) {
5294         case offsetof(struct xdp_md, data):
5295                 info->reg_type = PTR_TO_PACKET;
5296                 break;
5297         case offsetof(struct xdp_md, data_meta):
5298                 info->reg_type = PTR_TO_PACKET_META;
5299                 break;
5300         case offsetof(struct xdp_md, data_end):
5301                 info->reg_type = PTR_TO_PACKET_END;
5302                 break;
5303         }
5304
5305         return __is_valid_xdp_access(off, size);
5306 }
5307
5308 void bpf_warn_invalid_xdp_action(u32 act)
5309 {
5310         const u32 act_max = XDP_REDIRECT;
5311
5312         WARN_ONCE(1, "%s XDP return value %u, expect packet loss!\n",
5313                   act > act_max ? "Illegal" : "Driver unsupported",
5314                   act);
5315 }
5316 EXPORT_SYMBOL_GPL(bpf_warn_invalid_xdp_action);
5317
5318 static bool sock_addr_is_valid_access(int off, int size,
5319                                       enum bpf_access_type type,
5320                                       const struct bpf_prog *prog,
5321                                       struct bpf_insn_access_aux *info)
5322 {
5323         const int size_default = sizeof(__u32);
5324
5325         if (off < 0 || off >= sizeof(struct bpf_sock_addr))
5326                 return false;
5327         if (off % size != 0)
5328                 return false;
5329
5330         /* Disallow access to IPv6 fields from IPv4 contex and vise
5331          * versa.
5332          */
5333         switch (off) {
5334         case bpf_ctx_range(struct bpf_sock_addr, user_ip4):
5335                 switch (prog->expected_attach_type) {
5336                 case BPF_CGROUP_INET4_BIND:
5337                 case BPF_CGROUP_INET4_CONNECT:
5338                 case BPF_CGROUP_UDP4_SENDMSG:
5339                         break;
5340                 default:
5341                         return false;
5342                 }
5343                 break;
5344         case bpf_ctx_range_till(struct bpf_sock_addr, user_ip6[0], user_ip6[3]):
5345                 switch (prog->expected_attach_type) {
5346                 case BPF_CGROUP_INET6_BIND:
5347                 case BPF_CGROUP_INET6_CONNECT:
5348                 case BPF_CGROUP_UDP6_SENDMSG:
5349                         break;
5350                 default:
5351                         return false;
5352                 }
5353                 break;
5354         case bpf_ctx_range(struct bpf_sock_addr, msg_src_ip4):
5355                 switch (prog->expected_attach_type) {
5356                 case BPF_CGROUP_UDP4_SENDMSG:
5357                         break;
5358                 default:
5359                         return false;
5360                 }
5361                 break;
5362         case bpf_ctx_range_till(struct bpf_sock_addr, msg_src_ip6[0],
5363                                 msg_src_ip6[3]):
5364                 switch (prog->expected_attach_type) {
5365                 case BPF_CGROUP_UDP6_SENDMSG:
5366                         break;
5367                 default:
5368                         return false;
5369                 }
5370                 break;
5371         }
5372
5373         switch (off) {
5374         case bpf_ctx_range(struct bpf_sock_addr, user_ip4):
5375         case bpf_ctx_range_till(struct bpf_sock_addr, user_ip6[0], user_ip6[3]):
5376         case bpf_ctx_range(struct bpf_sock_addr, msg_src_ip4):
5377         case bpf_ctx_range_till(struct bpf_sock_addr, msg_src_ip6[0],
5378                                 msg_src_ip6[3]):
5379                 /* Only narrow read access allowed for now. */
5380                 if (type == BPF_READ) {
5381                         bpf_ctx_record_field_size(info, size_default);
5382                         if (!bpf_ctx_narrow_access_ok(off, size, size_default))
5383                                 return false;
5384                 } else {
5385                         if (size != size_default)
5386                                 return false;
5387                 }
5388                 break;
5389         case bpf_ctx_range(struct bpf_sock_addr, user_port):
5390                 if (size != size_default)
5391                         return false;
5392                 break;
5393         default:
5394                 if (type == BPF_READ) {
5395                         if (size != size_default)
5396                                 return false;
5397                 } else {
5398                         return false;
5399                 }
5400         }
5401
5402         return true;
5403 }
5404
5405 static bool sock_ops_is_valid_access(int off, int size,
5406                                      enum bpf_access_type type,
5407                                      const struct bpf_prog *prog,
5408                                      struct bpf_insn_access_aux *info)
5409 {
5410         const int size_default = sizeof(__u32);
5411
5412         if (off < 0 || off >= sizeof(struct bpf_sock_ops))
5413                 return false;
5414
5415         /* The verifier guarantees that size > 0. */
5416         if (off % size != 0)
5417                 return false;
5418
5419         if (type == BPF_WRITE) {
5420                 switch (off) {
5421                 case offsetof(struct bpf_sock_ops, reply):
5422                 case offsetof(struct bpf_sock_ops, sk_txhash):
5423                         if (size != size_default)
5424                                 return false;
5425                         break;
5426                 default:
5427                         return false;
5428                 }
5429         } else {
5430                 switch (off) {
5431                 case bpf_ctx_range_till(struct bpf_sock_ops, bytes_received,
5432                                         bytes_acked):
5433                         if (size != sizeof(__u64))
5434                                 return false;
5435                         break;
5436                 default:
5437                         if (size != size_default)
5438                                 return false;
5439                         break;
5440                 }
5441         }
5442
5443         return true;
5444 }
5445
5446 static int sk_skb_prologue(struct bpf_insn *insn_buf, bool direct_write,
5447                            const struct bpf_prog *prog)
5448 {
5449         return bpf_unclone_prologue(insn_buf, direct_write, prog, SK_DROP);
5450 }
5451
5452 static bool sk_skb_is_valid_access(int off, int size,
5453                                    enum bpf_access_type type,
5454                                    const struct bpf_prog *prog,
5455                                    struct bpf_insn_access_aux *info)
5456 {
5457         switch (off) {
5458         case bpf_ctx_range(struct __sk_buff, tc_classid):
5459         case bpf_ctx_range(struct __sk_buff, data_meta):
5460                 return false;
5461         }
5462
5463         if (type == BPF_WRITE) {
5464                 switch (off) {
5465                 case bpf_ctx_range(struct __sk_buff, tc_index):
5466                 case bpf_ctx_range(struct __sk_buff, priority):
5467                         break;
5468                 default:
5469                         return false;
5470                 }
5471         }
5472
5473         switch (off) {
5474         case bpf_ctx_range(struct __sk_buff, mark):
5475                 return false;
5476         case bpf_ctx_range(struct __sk_buff, data):
5477                 info->reg_type = PTR_TO_PACKET;
5478                 break;
5479         case bpf_ctx_range(struct __sk_buff, data_end):
5480                 info->reg_type = PTR_TO_PACKET_END;
5481                 break;
5482         }
5483
5484         return bpf_skb_is_valid_access(off, size, type, prog, info);
5485 }
5486
5487 static bool sk_msg_is_valid_access(int off, int size,
5488                                    enum bpf_access_type type,
5489                                    const struct bpf_prog *prog,
5490                                    struct bpf_insn_access_aux *info)
5491 {
5492         if (type == BPF_WRITE)
5493                 return false;
5494
5495         switch (off) {
5496         case offsetof(struct sk_msg_md, data):
5497                 info->reg_type = PTR_TO_PACKET;
5498                 if (size != sizeof(__u64))
5499                         return false;
5500                 break;
5501         case offsetof(struct sk_msg_md, data_end):
5502                 info->reg_type = PTR_TO_PACKET_END;
5503                 if (size != sizeof(__u64))
5504                         return false;
5505                 break;
5506         default:
5507                 if (size != sizeof(__u32))
5508                         return false;
5509         }
5510
5511         if (off < 0 || off >= sizeof(struct sk_msg_md))
5512                 return false;
5513         if (off % size != 0)
5514                 return false;
5515
5516         return true;
5517 }
5518
5519 static u32 bpf_convert_ctx_access(enum bpf_access_type type,
5520                                   const struct bpf_insn *si,
5521                                   struct bpf_insn *insn_buf,
5522                                   struct bpf_prog *prog, u32 *target_size)
5523 {
5524         struct bpf_insn *insn = insn_buf;
5525         int off;
5526
5527         switch (si->off) {
5528         case offsetof(struct __sk_buff, len):
5529                 *insn++ = BPF_LDX_MEM(BPF_W, si->dst_reg, si->src_reg,
5530                                       bpf_target_off(struct sk_buff, len, 4,
5531                                                      target_size));
5532                 break;
5533
5534         case offsetof(struct __sk_buff, protocol):
5535                 *insn++ = BPF_LDX_MEM(BPF_H, si->dst_reg, si->src_reg,
5536                                       bpf_target_off(struct sk_buff, protocol, 2,
5537                                                      target_size));
5538                 break;
5539
5540         case offsetof(struct __sk_buff, vlan_proto):
5541                 *insn++ = BPF_LDX_MEM(BPF_H, si->dst_reg, si->src_reg,
5542                                       bpf_target_off(struct sk_buff, vlan_proto, 2,
5543                                                      target_size));
5544                 break;
5545
5546         case offsetof(struct __sk_buff, priority):
5547                 if (type == BPF_WRITE)
5548                         *insn++ = BPF_STX_MEM(BPF_W, si->dst_reg, si->src_reg,
5549                                               bpf_target_off(struct sk_buff, priority, 4,
5550                                                              target_size));
5551                 else
5552                         *insn++ = BPF_LDX_MEM(BPF_W, si->dst_reg, si->src_reg,
5553                                               bpf_target_off(struct sk_buff, priority, 4,
5554                                                              target_size));
5555                 break;
5556
5557         case offsetof(struct __sk_buff, ingress_ifindex):
5558                 *insn++ = BPF_LDX_MEM(BPF_W, si->dst_reg, si->src_reg,
5559                                       bpf_target_off(struct sk_buff, skb_iif, 4,
5560                                                      target_size));
5561                 break;
5562
5563         case offsetof(struct __sk_buff, ifindex):
5564                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct sk_buff, dev),
5565                                       si->dst_reg, si->src_reg,
5566                                       offsetof(struct sk_buff, dev));
5567                 *insn++ = BPF_JMP_IMM(BPF_JEQ, si->dst_reg, 0, 1);
5568                 *insn++ = BPF_LDX_MEM(BPF_W, si->dst_reg, si->dst_reg,
5569                                       bpf_target_off(struct net_device, ifindex, 4,
5570                                                      target_size));
5571                 break;
5572
5573         case offsetof(struct __sk_buff, hash):
5574                 *insn++ = BPF_LDX_MEM(BPF_W, si->dst_reg, si->src_reg,
5575                                       bpf_target_off(struct sk_buff, hash, 4,
5576                                                      target_size));
5577                 break;
5578
5579         case offsetof(struct __sk_buff, mark):
5580                 if (type == BPF_WRITE)
5581                         *insn++ = BPF_STX_MEM(BPF_W, si->dst_reg, si->src_reg,
5582                                               bpf_target_off(struct sk_buff, mark, 4,
5583                                                              target_size));
5584                 else
5585                         *insn++ = BPF_LDX_MEM(BPF_W, si->dst_reg, si->src_reg,
5586                                               bpf_target_off(struct sk_buff, mark, 4,
5587                                                              target_size));
5588                 break;
5589
5590         case offsetof(struct __sk_buff, pkt_type):
5591                 *target_size = 1;
5592                 *insn++ = BPF_LDX_MEM(BPF_B, si->dst_reg, si->src_reg,
5593                                       PKT_TYPE_OFFSET());
5594                 *insn++ = BPF_ALU32_IMM(BPF_AND, si->dst_reg, PKT_TYPE_MAX);
5595 #ifdef __BIG_ENDIAN_BITFIELD
5596                 *insn++ = BPF_ALU32_IMM(BPF_RSH, si->dst_reg, 5);
5597 #endif
5598                 break;
5599
5600         case offsetof(struct __sk_buff, queue_mapping):
5601                 *insn++ = BPF_LDX_MEM(BPF_H, si->dst_reg, si->src_reg,
5602                                       bpf_target_off(struct sk_buff, queue_mapping, 2,
5603                                                      target_size));
5604                 break;
5605
5606         case offsetof(struct __sk_buff, vlan_present):
5607         case offsetof(struct __sk_buff, vlan_tci):
5608                 BUILD_BUG_ON(VLAN_TAG_PRESENT != 0x1000);
5609
5610                 *insn++ = BPF_LDX_MEM(BPF_H, si->dst_reg, si->src_reg,
5611                                       bpf_target_off(struct sk_buff, vlan_tci, 2,
5612                                                      target_size));
5613                 if (si->off == offsetof(struct __sk_buff, vlan_tci)) {
5614                         *insn++ = BPF_ALU32_IMM(BPF_AND, si->dst_reg,
5615                                                 ~VLAN_TAG_PRESENT);
5616                 } else {
5617                         *insn++ = BPF_ALU32_IMM(BPF_RSH, si->dst_reg, 12);
5618                         *insn++ = BPF_ALU32_IMM(BPF_AND, si->dst_reg, 1);
5619                 }
5620                 break;
5621
5622         case offsetof(struct __sk_buff, cb[0]) ...
5623              offsetofend(struct __sk_buff, cb[4]) - 1:
5624                 BUILD_BUG_ON(FIELD_SIZEOF(struct qdisc_skb_cb, data) < 20);
5625                 BUILD_BUG_ON((offsetof(struct sk_buff, cb) +
5626                               offsetof(struct qdisc_skb_cb, data)) %
5627                              sizeof(__u64));
5628
5629                 prog->cb_access = 1;
5630                 off  = si->off;
5631                 off -= offsetof(struct __sk_buff, cb[0]);
5632                 off += offsetof(struct sk_buff, cb);
5633                 off += offsetof(struct qdisc_skb_cb, data);
5634                 if (type == BPF_WRITE)
5635                         *insn++ = BPF_STX_MEM(BPF_SIZE(si->code), si->dst_reg,
5636                                               si->src_reg, off);
5637                 else
5638                         *insn++ = BPF_LDX_MEM(BPF_SIZE(si->code), si->dst_reg,
5639                                               si->src_reg, off);
5640                 break;
5641
5642         case offsetof(struct __sk_buff, tc_classid):
5643                 BUILD_BUG_ON(FIELD_SIZEOF(struct qdisc_skb_cb, tc_classid) != 2);
5644
5645                 off  = si->off;
5646                 off -= offsetof(struct __sk_buff, tc_classid);
5647                 off += offsetof(struct sk_buff, cb);
5648                 off += offsetof(struct qdisc_skb_cb, tc_classid);
5649                 *target_size = 2;
5650                 if (type == BPF_WRITE)
5651                         *insn++ = BPF_STX_MEM(BPF_H, si->dst_reg,
5652                                               si->src_reg, off);
5653                 else
5654                         *insn++ = BPF_LDX_MEM(BPF_H, si->dst_reg,
5655                                               si->src_reg, off);
5656                 break;
5657
5658         case offsetof(struct __sk_buff, data):
5659                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct sk_buff, data),
5660                                       si->dst_reg, si->src_reg,
5661                                       offsetof(struct sk_buff, data));
5662                 break;
5663
5664         case offsetof(struct __sk_buff, data_meta):
5665                 off  = si->off;
5666                 off -= offsetof(struct __sk_buff, data_meta);
5667                 off += offsetof(struct sk_buff, cb);
5668                 off += offsetof(struct bpf_skb_data_end, data_meta);
5669                 *insn++ = BPF_LDX_MEM(BPF_SIZEOF(void *), si->dst_reg,
5670                                       si->src_reg, off);
5671                 break;
5672
5673         case offsetof(struct __sk_buff, data_end):
5674                 off  = si->off;
5675                 off -= offsetof(struct __sk_buff, data_end);
5676                 off += offsetof(struct sk_buff, cb);
5677                 off += offsetof(struct bpf_skb_data_end, data_end);
5678                 *insn++ = BPF_LDX_MEM(BPF_SIZEOF(void *), si->dst_reg,
5679                                       si->src_reg, off);
5680                 break;
5681
5682         case offsetof(struct __sk_buff, tc_index):
5683 #ifdef CONFIG_NET_SCHED
5684                 if (type == BPF_WRITE)
5685                         *insn++ = BPF_STX_MEM(BPF_H, si->dst_reg, si->src_reg,
5686                                               bpf_target_off(struct sk_buff, tc_index, 2,
5687                                                              target_size));
5688                 else
5689                         *insn++ = BPF_LDX_MEM(BPF_H, si->dst_reg, si->src_reg,
5690                                               bpf_target_off(struct sk_buff, tc_index, 2,
5691                                                              target_size));
5692 #else
5693                 *target_size = 2;
5694                 if (type == BPF_WRITE)
5695                         *insn++ = BPF_MOV64_REG(si->dst_reg, si->dst_reg);
5696                 else
5697                         *insn++ = BPF_MOV64_IMM(si->dst_reg, 0);
5698 #endif
5699                 break;
5700
5701         case offsetof(struct __sk_buff, napi_id):
5702 #if defined(CONFIG_NET_RX_BUSY_POLL)
5703                 *insn++ = BPF_LDX_MEM(BPF_W, si->dst_reg, si->src_reg,
5704                                       bpf_target_off(struct sk_buff, napi_id, 4,
5705                                                      target_size));
5706                 *insn++ = BPF_JMP_IMM(BPF_JGE, si->dst_reg, MIN_NAPI_ID, 1);
5707                 *insn++ = BPF_MOV64_IMM(si->dst_reg, 0);
5708 #else
5709                 *target_size = 4;
5710                 *insn++ = BPF_MOV64_IMM(si->dst_reg, 0);
5711 #endif
5712                 break;
5713         case offsetof(struct __sk_buff, family):
5714                 BUILD_BUG_ON(FIELD_SIZEOF(struct sock_common, skc_family) != 2);
5715
5716                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct sk_buff, sk),
5717                                       si->dst_reg, si->src_reg,
5718                                       offsetof(struct sk_buff, sk));
5719                 *insn++ = BPF_LDX_MEM(BPF_H, si->dst_reg, si->dst_reg,
5720                                       bpf_target_off(struct sock_common,
5721                                                      skc_family,
5722                                                      2, target_size));
5723                 break;
5724         case offsetof(struct __sk_buff, remote_ip4):
5725                 BUILD_BUG_ON(FIELD_SIZEOF(struct sock_common, skc_daddr) != 4);
5726
5727                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct sk_buff, sk),
5728                                       si->dst_reg, si->src_reg,
5729                                       offsetof(struct sk_buff, sk));
5730                 *insn++ = BPF_LDX_MEM(BPF_W, si->dst_reg, si->dst_reg,
5731                                       bpf_target_off(struct sock_common,
5732                                                      skc_daddr,
5733                                                      4, target_size));
5734                 break;
5735         case offsetof(struct __sk_buff, local_ip4):
5736                 BUILD_BUG_ON(FIELD_SIZEOF(struct sock_common,
5737                                           skc_rcv_saddr) != 4);
5738
5739                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct sk_buff, sk),
5740                                       si->dst_reg, si->src_reg,
5741                                       offsetof(struct sk_buff, sk));
5742                 *insn++ = BPF_LDX_MEM(BPF_W, si->dst_reg, si->dst_reg,
5743                                       bpf_target_off(struct sock_common,
5744                                                      skc_rcv_saddr,
5745                                                      4, target_size));
5746                 break;
5747         case offsetof(struct __sk_buff, remote_ip6[0]) ...
5748              offsetof(struct __sk_buff, remote_ip6[3]):
5749 #if IS_ENABLED(CONFIG_IPV6)
5750                 BUILD_BUG_ON(FIELD_SIZEOF(struct sock_common,
5751                                           skc_v6_daddr.s6_addr32[0]) != 4);
5752
5753                 off = si->off;
5754                 off -= offsetof(struct __sk_buff, remote_ip6[0]);
5755
5756                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct sk_buff, sk),
5757                                       si->dst_reg, si->src_reg,
5758                                       offsetof(struct sk_buff, sk));
5759                 *insn++ = BPF_LDX_MEM(BPF_W, si->dst_reg, si->dst_reg,
5760                                       offsetof(struct sock_common,
5761                                                skc_v6_daddr.s6_addr32[0]) +
5762                                       off);
5763 #else
5764                 *insn++ = BPF_MOV32_IMM(si->dst_reg, 0);
5765 #endif
5766                 break;
5767         case offsetof(struct __sk_buff, local_ip6[0]) ...
5768              offsetof(struct __sk_buff, local_ip6[3]):
5769 #if IS_ENABLED(CONFIG_IPV6)
5770                 BUILD_BUG_ON(FIELD_SIZEOF(struct sock_common,
5771                                           skc_v6_rcv_saddr.s6_addr32[0]) != 4);
5772
5773                 off = si->off;
5774                 off -= offsetof(struct __sk_buff, local_ip6[0]);
5775
5776                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct sk_buff, sk),
5777                                       si->dst_reg, si->src_reg,
5778                                       offsetof(struct sk_buff, sk));
5779                 *insn++ = BPF_LDX_MEM(BPF_W, si->dst_reg, si->dst_reg,
5780                                       offsetof(struct sock_common,
5781                                                skc_v6_rcv_saddr.s6_addr32[0]) +
5782                                       off);
5783 #else
5784                 *insn++ = BPF_MOV32_IMM(si->dst_reg, 0);
5785 #endif
5786                 break;
5787
5788         case offsetof(struct __sk_buff, remote_port):
5789                 BUILD_BUG_ON(FIELD_SIZEOF(struct sock_common, skc_dport) != 2);
5790
5791                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct sk_buff, sk),
5792                                       si->dst_reg, si->src_reg,
5793                                       offsetof(struct sk_buff, sk));
5794                 *insn++ = BPF_LDX_MEM(BPF_H, si->dst_reg, si->dst_reg,
5795                                       bpf_target_off(struct sock_common,
5796                                                      skc_dport,
5797                                                      2, target_size));
5798 #ifndef __BIG_ENDIAN_BITFIELD
5799                 *insn++ = BPF_ALU32_IMM(BPF_LSH, si->dst_reg, 16);
5800 #endif
5801                 break;
5802
5803         case offsetof(struct __sk_buff, local_port):
5804                 BUILD_BUG_ON(FIELD_SIZEOF(struct sock_common, skc_num) != 2);
5805
5806                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct sk_buff, sk),
5807                                       si->dst_reg, si->src_reg,
5808                                       offsetof(struct sk_buff, sk));
5809                 *insn++ = BPF_LDX_MEM(BPF_H, si->dst_reg, si->dst_reg,
5810                                       bpf_target_off(struct sock_common,
5811                                                      skc_num, 2, target_size));
5812                 break;
5813         }
5814
5815         return insn - insn_buf;
5816 }
5817
5818 static u32 sock_filter_convert_ctx_access(enum bpf_access_type type,
5819                                           const struct bpf_insn *si,
5820                                           struct bpf_insn *insn_buf,
5821                                           struct bpf_prog *prog, u32 *target_size)
5822 {
5823         struct bpf_insn *insn = insn_buf;
5824         int off;
5825
5826         switch (si->off) {
5827         case offsetof(struct bpf_sock, bound_dev_if):
5828                 BUILD_BUG_ON(FIELD_SIZEOF(struct sock, sk_bound_dev_if) != 4);
5829
5830                 if (type == BPF_WRITE)
5831                         *insn++ = BPF_STX_MEM(BPF_W, si->dst_reg, si->src_reg,
5832                                         offsetof(struct sock, sk_bound_dev_if));
5833                 else
5834                         *insn++ = BPF_LDX_MEM(BPF_W, si->dst_reg, si->src_reg,
5835                                       offsetof(struct sock, sk_bound_dev_if));
5836                 break;
5837
5838         case offsetof(struct bpf_sock, mark):
5839                 BUILD_BUG_ON(FIELD_SIZEOF(struct sock, sk_mark) != 4);
5840
5841                 if (type == BPF_WRITE)
5842                         *insn++ = BPF_STX_MEM(BPF_W, si->dst_reg, si->src_reg,
5843                                         offsetof(struct sock, sk_mark));
5844                 else
5845                         *insn++ = BPF_LDX_MEM(BPF_W, si->dst_reg, si->src_reg,
5846                                       offsetof(struct sock, sk_mark));
5847                 break;
5848
5849         case offsetof(struct bpf_sock, priority):
5850                 BUILD_BUG_ON(FIELD_SIZEOF(struct sock, sk_priority) != 4);
5851
5852                 if (type == BPF_WRITE)
5853                         *insn++ = BPF_STX_MEM(BPF_W, si->dst_reg, si->src_reg,
5854                                         offsetof(struct sock, sk_priority));
5855                 else
5856                         *insn++ = BPF_LDX_MEM(BPF_W, si->dst_reg, si->src_reg,
5857                                       offsetof(struct sock, sk_priority));
5858                 break;
5859
5860         case offsetof(struct bpf_sock, family):
5861                 BUILD_BUG_ON(FIELD_SIZEOF(struct sock, sk_family) != 2);
5862
5863                 *insn++ = BPF_LDX_MEM(BPF_H, si->dst_reg, si->src_reg,
5864                                       offsetof(struct sock, sk_family));
5865                 break;
5866
5867         case offsetof(struct bpf_sock, type):
5868                 *insn++ = BPF_LDX_MEM(BPF_W, si->dst_reg, si->src_reg,
5869                                       offsetof(struct sock, __sk_flags_offset));
5870                 *insn++ = BPF_ALU32_IMM(BPF_AND, si->dst_reg, SK_FL_TYPE_MASK);
5871                 *insn++ = BPF_ALU32_IMM(BPF_RSH, si->dst_reg, SK_FL_TYPE_SHIFT);
5872                 break;
5873
5874         case offsetof(struct bpf_sock, protocol):
5875                 *insn++ = BPF_LDX_MEM(BPF_W, si->dst_reg, si->src_reg,
5876                                       offsetof(struct sock, __sk_flags_offset));
5877                 *insn++ = BPF_ALU32_IMM(BPF_AND, si->dst_reg, SK_FL_PROTO_MASK);
5878                 *insn++ = BPF_ALU32_IMM(BPF_RSH, si->dst_reg, SK_FL_PROTO_SHIFT);
5879                 break;
5880
5881         case offsetof(struct bpf_sock, src_ip4):
5882                 *insn++ = BPF_LDX_MEM(
5883                         BPF_SIZE(si->code), si->dst_reg, si->src_reg,
5884                         bpf_target_off(struct sock_common, skc_rcv_saddr,
5885                                        FIELD_SIZEOF(struct sock_common,
5886                                                     skc_rcv_saddr),
5887                                        target_size));
5888                 break;
5889
5890         case bpf_ctx_range_till(struct bpf_sock, src_ip6[0], src_ip6[3]):
5891 #if IS_ENABLED(CONFIG_IPV6)
5892                 off = si->off;
5893                 off -= offsetof(struct bpf_sock, src_ip6[0]);
5894                 *insn++ = BPF_LDX_MEM(
5895                         BPF_SIZE(si->code), si->dst_reg, si->src_reg,
5896                         bpf_target_off(
5897                                 struct sock_common,
5898                                 skc_v6_rcv_saddr.s6_addr32[0],
5899                                 FIELD_SIZEOF(struct sock_common,
5900                                              skc_v6_rcv_saddr.s6_addr32[0]),
5901                                 target_size) + off);
5902 #else
5903                 (void)off;
5904                 *insn++ = BPF_MOV32_IMM(si->dst_reg, 0);
5905 #endif
5906                 break;
5907
5908         case offsetof(struct bpf_sock, src_port):
5909                 *insn++ = BPF_LDX_MEM(
5910                         BPF_FIELD_SIZEOF(struct sock_common, skc_num),
5911                         si->dst_reg, si->src_reg,
5912                         bpf_target_off(struct sock_common, skc_num,
5913                                        FIELD_SIZEOF(struct sock_common,
5914                                                     skc_num),
5915                                        target_size));
5916                 break;
5917         }
5918
5919         return insn - insn_buf;
5920 }
5921
5922 static u32 tc_cls_act_convert_ctx_access(enum bpf_access_type type,
5923                                          const struct bpf_insn *si,
5924                                          struct bpf_insn *insn_buf,
5925                                          struct bpf_prog *prog, u32 *target_size)
5926 {
5927         struct bpf_insn *insn = insn_buf;
5928
5929         switch (si->off) {
5930         case offsetof(struct __sk_buff, ifindex):
5931                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct sk_buff, dev),
5932                                       si->dst_reg, si->src_reg,
5933                                       offsetof(struct sk_buff, dev));
5934                 *insn++ = BPF_LDX_MEM(BPF_W, si->dst_reg, si->dst_reg,
5935                                       bpf_target_off(struct net_device, ifindex, 4,
5936                                                      target_size));
5937                 break;
5938         default:
5939                 return bpf_convert_ctx_access(type, si, insn_buf, prog,
5940                                               target_size);
5941         }
5942
5943         return insn - insn_buf;
5944 }
5945
5946 static u32 xdp_convert_ctx_access(enum bpf_access_type type,
5947                                   const struct bpf_insn *si,
5948                                   struct bpf_insn *insn_buf,
5949                                   struct bpf_prog *prog, u32 *target_size)
5950 {
5951         struct bpf_insn *insn = insn_buf;
5952
5953         switch (si->off) {
5954         case offsetof(struct xdp_md, data):
5955                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct xdp_buff, data),
5956                                       si->dst_reg, si->src_reg,
5957                                       offsetof(struct xdp_buff, data));
5958                 break;
5959         case offsetof(struct xdp_md, data_meta):
5960                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct xdp_buff, data_meta),
5961                                       si->dst_reg, si->src_reg,
5962                                       offsetof(struct xdp_buff, data_meta));
5963                 break;
5964         case offsetof(struct xdp_md, data_end):
5965                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct xdp_buff, data_end),
5966                                       si->dst_reg, si->src_reg,
5967                                       offsetof(struct xdp_buff, data_end));
5968                 break;
5969         case offsetof(struct xdp_md, ingress_ifindex):
5970                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct xdp_buff, rxq),
5971                                       si->dst_reg, si->src_reg,
5972                                       offsetof(struct xdp_buff, rxq));
5973                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct xdp_rxq_info, dev),
5974                                       si->dst_reg, si->dst_reg,
5975                                       offsetof(struct xdp_rxq_info, dev));
5976                 *insn++ = BPF_LDX_MEM(BPF_W, si->dst_reg, si->dst_reg,
5977                                       offsetof(struct net_device, ifindex));
5978                 break;
5979         case offsetof(struct xdp_md, rx_queue_index):
5980                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct xdp_buff, rxq),
5981                                       si->dst_reg, si->src_reg,
5982                                       offsetof(struct xdp_buff, rxq));
5983                 *insn++ = BPF_LDX_MEM(BPF_W, si->dst_reg, si->dst_reg,
5984                                       offsetof(struct xdp_rxq_info,
5985                                                queue_index));
5986                 break;
5987         }
5988
5989         return insn - insn_buf;
5990 }
5991
5992 /* SOCK_ADDR_LOAD_NESTED_FIELD() loads Nested Field S.F.NF where S is type of
5993  * context Structure, F is Field in context structure that contains a pointer
5994  * to Nested Structure of type NS that has the field NF.
5995  *
5996  * SIZE encodes the load size (BPF_B, BPF_H, etc). It's up to caller to make
5997  * sure that SIZE is not greater than actual size of S.F.NF.
5998  *
5999  * If offset OFF is provided, the load happens from that offset relative to
6000  * offset of NF.
6001  */
6002 #define SOCK_ADDR_LOAD_NESTED_FIELD_SIZE_OFF(S, NS, F, NF, SIZE, OFF)          \
6003         do {                                                                   \
6004                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(S, F), si->dst_reg,     \
6005                                       si->src_reg, offsetof(S, F));            \
6006                 *insn++ = BPF_LDX_MEM(                                         \
6007                         SIZE, si->dst_reg, si->dst_reg,                        \
6008                         bpf_target_off(NS, NF, FIELD_SIZEOF(NS, NF),           \
6009                                        target_size)                            \
6010                                 + OFF);                                        \
6011         } while (0)
6012
6013 #define SOCK_ADDR_LOAD_NESTED_FIELD(S, NS, F, NF)                              \
6014         SOCK_ADDR_LOAD_NESTED_FIELD_SIZE_OFF(S, NS, F, NF,                     \
6015                                              BPF_FIELD_SIZEOF(NS, NF), 0)
6016
6017 /* SOCK_ADDR_STORE_NESTED_FIELD_OFF() has semantic similar to
6018  * SOCK_ADDR_LOAD_NESTED_FIELD_SIZE_OFF() but for store operation.
6019  *
6020  * It doesn't support SIZE argument though since narrow stores are not
6021  * supported for now.
6022  *
6023  * In addition it uses Temporary Field TF (member of struct S) as the 3rd
6024  * "register" since two registers available in convert_ctx_access are not
6025  * enough: we can't override neither SRC, since it contains value to store, nor
6026  * DST since it contains pointer to context that may be used by later
6027  * instructions. But we need a temporary place to save pointer to nested
6028  * structure whose field we want to store to.
6029  */
6030 #define SOCK_ADDR_STORE_NESTED_FIELD_OFF(S, NS, F, NF, OFF, TF)                \
6031         do {                                                                   \
6032                 int tmp_reg = BPF_REG_9;                                       \
6033                 if (si->src_reg == tmp_reg || si->dst_reg == tmp_reg)          \
6034                         --tmp_reg;                                             \
6035                 if (si->src_reg == tmp_reg || si->dst_reg == tmp_reg)          \
6036                         --tmp_reg;                                             \
6037                 *insn++ = BPF_STX_MEM(BPF_DW, si->dst_reg, tmp_reg,            \
6038                                       offsetof(S, TF));                        \
6039                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(S, F), tmp_reg,         \
6040                                       si->dst_reg, offsetof(S, F));            \
6041                 *insn++ = BPF_STX_MEM(                                         \
6042                         BPF_FIELD_SIZEOF(NS, NF), tmp_reg, si->src_reg,        \
6043                         bpf_target_off(NS, NF, FIELD_SIZEOF(NS, NF),           \
6044                                        target_size)                            \
6045                                 + OFF);                                        \
6046                 *insn++ = BPF_LDX_MEM(BPF_DW, tmp_reg, si->dst_reg,            \
6047                                       offsetof(S, TF));                        \
6048         } while (0)
6049
6050 #define SOCK_ADDR_LOAD_OR_STORE_NESTED_FIELD_SIZE_OFF(S, NS, F, NF, SIZE, OFF, \
6051                                                       TF)                      \
6052         do {                                                                   \
6053                 if (type == BPF_WRITE) {                                       \
6054                         SOCK_ADDR_STORE_NESTED_FIELD_OFF(S, NS, F, NF, OFF,    \
6055                                                          TF);                  \
6056                 } else {                                                       \
6057                         SOCK_ADDR_LOAD_NESTED_FIELD_SIZE_OFF(                  \
6058                                 S, NS, F, NF, SIZE, OFF);  \
6059                 }                                                              \
6060         } while (0)
6061
6062 #define SOCK_ADDR_LOAD_OR_STORE_NESTED_FIELD(S, NS, F, NF, TF)                 \
6063         SOCK_ADDR_LOAD_OR_STORE_NESTED_FIELD_SIZE_OFF(                         \
6064                 S, NS, F, NF, BPF_FIELD_SIZEOF(NS, NF), 0, TF)
6065
6066 static u32 sock_addr_convert_ctx_access(enum bpf_access_type type,
6067                                         const struct bpf_insn *si,
6068                                         struct bpf_insn *insn_buf,
6069                                         struct bpf_prog *prog, u32 *target_size)
6070 {
6071         struct bpf_insn *insn = insn_buf;
6072         int off;
6073
6074         switch (si->off) {
6075         case offsetof(struct bpf_sock_addr, user_family):
6076                 SOCK_ADDR_LOAD_NESTED_FIELD(struct bpf_sock_addr_kern,
6077                                             struct sockaddr, uaddr, sa_family);
6078                 break;
6079
6080         case offsetof(struct bpf_sock_addr, user_ip4):
6081                 SOCK_ADDR_LOAD_OR_STORE_NESTED_FIELD_SIZE_OFF(
6082                         struct bpf_sock_addr_kern, struct sockaddr_in, uaddr,
6083                         sin_addr, BPF_SIZE(si->code), 0, tmp_reg);
6084                 break;
6085
6086         case bpf_ctx_range_till(struct bpf_sock_addr, user_ip6[0], user_ip6[3]):
6087                 off = si->off;
6088                 off -= offsetof(struct bpf_sock_addr, user_ip6[0]);
6089                 SOCK_ADDR_LOAD_OR_STORE_NESTED_FIELD_SIZE_OFF(
6090                         struct bpf_sock_addr_kern, struct sockaddr_in6, uaddr,
6091                         sin6_addr.s6_addr32[0], BPF_SIZE(si->code), off,
6092                         tmp_reg);
6093                 break;
6094
6095         case offsetof(struct bpf_sock_addr, user_port):
6096                 /* To get port we need to know sa_family first and then treat
6097                  * sockaddr as either sockaddr_in or sockaddr_in6.
6098                  * Though we can simplify since port field has same offset and
6099                  * size in both structures.
6100                  * Here we check this invariant and use just one of the
6101                  * structures if it's true.
6102                  */
6103                 BUILD_BUG_ON(offsetof(struct sockaddr_in, sin_port) !=
6104                              offsetof(struct sockaddr_in6, sin6_port));
6105                 BUILD_BUG_ON(FIELD_SIZEOF(struct sockaddr_in, sin_port) !=
6106                              FIELD_SIZEOF(struct sockaddr_in6, sin6_port));
6107                 SOCK_ADDR_LOAD_OR_STORE_NESTED_FIELD(struct bpf_sock_addr_kern,
6108                                                      struct sockaddr_in6, uaddr,
6109                                                      sin6_port, tmp_reg);
6110                 break;
6111
6112         case offsetof(struct bpf_sock_addr, family):
6113                 SOCK_ADDR_LOAD_NESTED_FIELD(struct bpf_sock_addr_kern,
6114                                             struct sock, sk, sk_family);
6115                 break;
6116
6117         case offsetof(struct bpf_sock_addr, type):
6118                 SOCK_ADDR_LOAD_NESTED_FIELD_SIZE_OFF(
6119                         struct bpf_sock_addr_kern, struct sock, sk,
6120                         __sk_flags_offset, BPF_W, 0);
6121                 *insn++ = BPF_ALU32_IMM(BPF_AND, si->dst_reg, SK_FL_TYPE_MASK);
6122                 *insn++ = BPF_ALU32_IMM(BPF_RSH, si->dst_reg, SK_FL_TYPE_SHIFT);
6123                 break;
6124
6125         case offsetof(struct bpf_sock_addr, protocol):
6126                 SOCK_ADDR_LOAD_NESTED_FIELD_SIZE_OFF(
6127                         struct bpf_sock_addr_kern, struct sock, sk,
6128                         __sk_flags_offset, BPF_W, 0);
6129                 *insn++ = BPF_ALU32_IMM(BPF_AND, si->dst_reg, SK_FL_PROTO_MASK);
6130                 *insn++ = BPF_ALU32_IMM(BPF_RSH, si->dst_reg,
6131                                         SK_FL_PROTO_SHIFT);
6132                 break;
6133
6134         case offsetof(struct bpf_sock_addr, msg_src_ip4):
6135                 /* Treat t_ctx as struct in_addr for msg_src_ip4. */
6136                 SOCK_ADDR_LOAD_OR_STORE_NESTED_FIELD_SIZE_OFF(
6137                         struct bpf_sock_addr_kern, struct in_addr, t_ctx,
6138                         s_addr, BPF_SIZE(si->code), 0, tmp_reg);
6139                 break;
6140
6141         case bpf_ctx_range_till(struct bpf_sock_addr, msg_src_ip6[0],
6142                                 msg_src_ip6[3]):
6143                 off = si->off;
6144                 off -= offsetof(struct bpf_sock_addr, msg_src_ip6[0]);
6145                 /* Treat t_ctx as struct in6_addr for msg_src_ip6. */
6146                 SOCK_ADDR_LOAD_OR_STORE_NESTED_FIELD_SIZE_OFF(
6147                         struct bpf_sock_addr_kern, struct in6_addr, t_ctx,
6148                         s6_addr32[0], BPF_SIZE(si->code), off, tmp_reg);
6149                 break;
6150         }
6151
6152         return insn - insn_buf;
6153 }
6154
6155 static u32 sock_ops_convert_ctx_access(enum bpf_access_type type,
6156                                        const struct bpf_insn *si,
6157                                        struct bpf_insn *insn_buf,
6158                                        struct bpf_prog *prog,
6159                                        u32 *target_size)
6160 {
6161         struct bpf_insn *insn = insn_buf;
6162         int off;
6163
6164         switch (si->off) {
6165         case offsetof(struct bpf_sock_ops, op) ...
6166              offsetof(struct bpf_sock_ops, replylong[3]):
6167                 BUILD_BUG_ON(FIELD_SIZEOF(struct bpf_sock_ops, op) !=
6168                              FIELD_SIZEOF(struct bpf_sock_ops_kern, op));
6169                 BUILD_BUG_ON(FIELD_SIZEOF(struct bpf_sock_ops, reply) !=
6170                              FIELD_SIZEOF(struct bpf_sock_ops_kern, reply));
6171                 BUILD_BUG_ON(FIELD_SIZEOF(struct bpf_sock_ops, replylong) !=
6172                              FIELD_SIZEOF(struct bpf_sock_ops_kern, replylong));
6173                 off = si->off;
6174                 off -= offsetof(struct bpf_sock_ops, op);
6175                 off += offsetof(struct bpf_sock_ops_kern, op);
6176                 if (type == BPF_WRITE)
6177                         *insn++ = BPF_STX_MEM(BPF_W, si->dst_reg, si->src_reg,
6178                                               off);
6179                 else
6180                         *insn++ = BPF_LDX_MEM(BPF_W, si->dst_reg, si->src_reg,
6181                                               off);
6182                 break;
6183
6184         case offsetof(struct bpf_sock_ops, family):
6185                 BUILD_BUG_ON(FIELD_SIZEOF(struct sock_common, skc_family) != 2);
6186
6187                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(
6188                                               struct bpf_sock_ops_kern, sk),
6189                                       si->dst_reg, si->src_reg,
6190                                       offsetof(struct bpf_sock_ops_kern, sk));
6191                 *insn++ = BPF_LDX_MEM(BPF_H, si->dst_reg, si->dst_reg,
6192                                       offsetof(struct sock_common, skc_family));
6193                 break;
6194
6195         case offsetof(struct bpf_sock_ops, remote_ip4):
6196                 BUILD_BUG_ON(FIELD_SIZEOF(struct sock_common, skc_daddr) != 4);
6197
6198                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(
6199                                                 struct bpf_sock_ops_kern, sk),
6200                                       si->dst_reg, si->src_reg,
6201                                       offsetof(struct bpf_sock_ops_kern, sk));
6202                 *insn++ = BPF_LDX_MEM(BPF_W, si->dst_reg, si->dst_reg,
6203                                       offsetof(struct sock_common, skc_daddr));
6204                 break;
6205
6206         case offsetof(struct bpf_sock_ops, local_ip4):
6207                 BUILD_BUG_ON(FIELD_SIZEOF(struct sock_common,
6208                                           skc_rcv_saddr) != 4);
6209
6210                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(
6211                                               struct bpf_sock_ops_kern, sk),
6212                                       si->dst_reg, si->src_reg,
6213                                       offsetof(struct bpf_sock_ops_kern, sk));
6214                 *insn++ = BPF_LDX_MEM(BPF_W, si->dst_reg, si->dst_reg,
6215                                       offsetof(struct sock_common,
6216                                                skc_rcv_saddr));
6217                 break;
6218
6219         case offsetof(struct bpf_sock_ops, remote_ip6[0]) ...
6220              offsetof(struct bpf_sock_ops, remote_ip6[3]):
6221 #if IS_ENABLED(CONFIG_IPV6)
6222                 BUILD_BUG_ON(FIELD_SIZEOF(struct sock_common,
6223                                           skc_v6_daddr.s6_addr32[0]) != 4);
6224
6225                 off = si->off;
6226                 off -= offsetof(struct bpf_sock_ops, remote_ip6[0]);
6227                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(
6228                                                 struct bpf_sock_ops_kern, sk),
6229                                       si->dst_reg, si->src_reg,
6230                                       offsetof(struct bpf_sock_ops_kern, sk));
6231                 *insn++ = BPF_LDX_MEM(BPF_W, si->dst_reg, si->dst_reg,
6232                                       offsetof(struct sock_common,
6233                                                skc_v6_daddr.s6_addr32[0]) +
6234                                       off);
6235 #else
6236                 *insn++ = BPF_MOV32_IMM(si->dst_reg, 0);
6237 #endif
6238                 break;
6239
6240         case offsetof(struct bpf_sock_ops, local_ip6[0]) ...
6241              offsetof(struct bpf_sock_ops, local_ip6[3]):
6242 #if IS_ENABLED(CONFIG_IPV6)
6243                 BUILD_BUG_ON(FIELD_SIZEOF(struct sock_common,
6244                                           skc_v6_rcv_saddr.s6_addr32[0]) != 4);
6245
6246                 off = si->off;
6247                 off -= offsetof(struct bpf_sock_ops, local_ip6[0]);
6248                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(
6249                                                 struct bpf_sock_ops_kern, sk),
6250                                       si->dst_reg, si->src_reg,
6251                                       offsetof(struct bpf_sock_ops_kern, sk));
6252                 *insn++ = BPF_LDX_MEM(BPF_W, si->dst_reg, si->dst_reg,
6253                                       offsetof(struct sock_common,
6254                                                skc_v6_rcv_saddr.s6_addr32[0]) +
6255                                       off);
6256 #else
6257                 *insn++ = BPF_MOV32_IMM(si->dst_reg, 0);
6258 #endif
6259                 break;
6260
6261         case offsetof(struct bpf_sock_ops, remote_port):
6262                 BUILD_BUG_ON(FIELD_SIZEOF(struct sock_common, skc_dport) != 2);
6263
6264                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(
6265                                                 struct bpf_sock_ops_kern, sk),
6266                                       si->dst_reg, si->src_reg,
6267                                       offsetof(struct bpf_sock_ops_kern, sk));
6268                 *insn++ = BPF_LDX_MEM(BPF_H, si->dst_reg, si->dst_reg,
6269                                       offsetof(struct sock_common, skc_dport));
6270 #ifndef __BIG_ENDIAN_BITFIELD
6271                 *insn++ = BPF_ALU32_IMM(BPF_LSH, si->dst_reg, 16);
6272 #endif
6273                 break;
6274
6275         case offsetof(struct bpf_sock_ops, local_port):
6276                 BUILD_BUG_ON(FIELD_SIZEOF(struct sock_common, skc_num) != 2);
6277
6278                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(
6279                                                 struct bpf_sock_ops_kern, sk),
6280                                       si->dst_reg, si->src_reg,
6281                                       offsetof(struct bpf_sock_ops_kern, sk));
6282                 *insn++ = BPF_LDX_MEM(BPF_H, si->dst_reg, si->dst_reg,
6283                                       offsetof(struct sock_common, skc_num));
6284                 break;
6285
6286         case offsetof(struct bpf_sock_ops, is_fullsock):
6287                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(
6288                                                 struct bpf_sock_ops_kern,
6289                                                 is_fullsock),
6290                                       si->dst_reg, si->src_reg,
6291                                       offsetof(struct bpf_sock_ops_kern,
6292                                                is_fullsock));
6293                 break;
6294
6295         case offsetof(struct bpf_sock_ops, state):
6296                 BUILD_BUG_ON(FIELD_SIZEOF(struct sock_common, skc_state) != 1);
6297
6298                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(
6299                                                 struct bpf_sock_ops_kern, sk),
6300                                       si->dst_reg, si->src_reg,
6301                                       offsetof(struct bpf_sock_ops_kern, sk));
6302                 *insn++ = BPF_LDX_MEM(BPF_B, si->dst_reg, si->dst_reg,
6303                                       offsetof(struct sock_common, skc_state));
6304                 break;
6305
6306         case offsetof(struct bpf_sock_ops, rtt_min):
6307                 BUILD_BUG_ON(FIELD_SIZEOF(struct tcp_sock, rtt_min) !=
6308                              sizeof(struct minmax));
6309                 BUILD_BUG_ON(sizeof(struct minmax) <
6310                              sizeof(struct minmax_sample));
6311
6312                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(
6313                                                 struct bpf_sock_ops_kern, sk),
6314                                       si->dst_reg, si->src_reg,
6315                                       offsetof(struct bpf_sock_ops_kern, sk));
6316                 *insn++ = BPF_LDX_MEM(BPF_W, si->dst_reg, si->dst_reg,
6317                                       offsetof(struct tcp_sock, rtt_min) +
6318                                       FIELD_SIZEOF(struct minmax_sample, t));
6319                 break;
6320
6321 /* Helper macro for adding read access to tcp_sock or sock fields. */
6322 #define SOCK_OPS_GET_FIELD(BPF_FIELD, OBJ_FIELD, OBJ)                         \
6323         do {                                                                  \
6324                 BUILD_BUG_ON(FIELD_SIZEOF(OBJ, OBJ_FIELD) >                   \
6325                              FIELD_SIZEOF(struct bpf_sock_ops, BPF_FIELD));   \
6326                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(                       \
6327                                                 struct bpf_sock_ops_kern,     \
6328                                                 is_fullsock),                 \
6329                                       si->dst_reg, si->src_reg,               \
6330                                       offsetof(struct bpf_sock_ops_kern,      \
6331                                                is_fullsock));                 \
6332                 *insn++ = BPF_JMP_IMM(BPF_JEQ, si->dst_reg, 0, 2);            \
6333                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(                       \
6334                                                 struct bpf_sock_ops_kern, sk),\
6335                                       si->dst_reg, si->src_reg,               \
6336                                       offsetof(struct bpf_sock_ops_kern, sk));\
6337                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(OBJ,                   \
6338                                                        OBJ_FIELD),            \
6339                                       si->dst_reg, si->dst_reg,               \
6340                                       offsetof(OBJ, OBJ_FIELD));              \
6341         } while (0)
6342
6343 /* Helper macro for adding write access to tcp_sock or sock fields.
6344  * The macro is called with two registers, dst_reg which contains a pointer
6345  * to ctx (context) and src_reg which contains the value that should be
6346  * stored. However, we need an additional register since we cannot overwrite
6347  * dst_reg because it may be used later in the program.
6348  * Instead we "borrow" one of the other register. We first save its value
6349  * into a new (temp) field in bpf_sock_ops_kern, use it, and then restore
6350  * it at the end of the macro.
6351  */
6352 #define SOCK_OPS_SET_FIELD(BPF_FIELD, OBJ_FIELD, OBJ)                         \
6353         do {                                                                  \
6354                 int reg = BPF_REG_9;                                          \
6355                 BUILD_BUG_ON(FIELD_SIZEOF(OBJ, OBJ_FIELD) >                   \
6356                              FIELD_SIZEOF(struct bpf_sock_ops, BPF_FIELD));   \
6357                 if (si->dst_reg == reg || si->src_reg == reg)                 \
6358                         reg--;                                                \
6359                 if (si->dst_reg == reg || si->src_reg == reg)                 \
6360                         reg--;                                                \
6361                 *insn++ = BPF_STX_MEM(BPF_DW, si->dst_reg, reg,               \
6362                                       offsetof(struct bpf_sock_ops_kern,      \
6363                                                temp));                        \
6364                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(                       \
6365                                                 struct bpf_sock_ops_kern,     \
6366                                                 is_fullsock),                 \
6367                                       reg, si->dst_reg,                       \
6368                                       offsetof(struct bpf_sock_ops_kern,      \
6369                                                is_fullsock));                 \
6370                 *insn++ = BPF_JMP_IMM(BPF_JEQ, reg, 0, 2);                    \
6371                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(                       \
6372                                                 struct bpf_sock_ops_kern, sk),\
6373                                       reg, si->dst_reg,                       \
6374                                       offsetof(struct bpf_sock_ops_kern, sk));\
6375                 *insn++ = BPF_STX_MEM(BPF_FIELD_SIZEOF(OBJ, OBJ_FIELD),       \
6376                                       reg, si->src_reg,                       \
6377                                       offsetof(OBJ, OBJ_FIELD));              \
6378                 *insn++ = BPF_LDX_MEM(BPF_DW, reg, si->dst_reg,               \
6379                                       offsetof(struct bpf_sock_ops_kern,      \
6380                                                temp));                        \
6381         } while (0)
6382
6383 #define SOCK_OPS_GET_OR_SET_FIELD(BPF_FIELD, OBJ_FIELD, OBJ, TYPE)            \
6384         do {                                                                  \
6385                 if (TYPE == BPF_WRITE)                                        \
6386                         SOCK_OPS_SET_FIELD(BPF_FIELD, OBJ_FIELD, OBJ);        \
6387                 else                                                          \
6388                         SOCK_OPS_GET_FIELD(BPF_FIELD, OBJ_FIELD, OBJ);        \
6389         } while (0)
6390
6391         case offsetof(struct bpf_sock_ops, snd_cwnd):
6392                 SOCK_OPS_GET_FIELD(snd_cwnd, snd_cwnd, struct tcp_sock);
6393                 break;
6394
6395         case offsetof(struct bpf_sock_ops, srtt_us):
6396                 SOCK_OPS_GET_FIELD(srtt_us, srtt_us, struct tcp_sock);
6397                 break;
6398
6399         case offsetof(struct bpf_sock_ops, bpf_sock_ops_cb_flags):
6400                 SOCK_OPS_GET_FIELD(bpf_sock_ops_cb_flags, bpf_sock_ops_cb_flags,
6401                                    struct tcp_sock);
6402                 break;
6403
6404         case offsetof(struct bpf_sock_ops, snd_ssthresh):
6405                 SOCK_OPS_GET_FIELD(snd_ssthresh, snd_ssthresh, struct tcp_sock);
6406                 break;
6407
6408         case offsetof(struct bpf_sock_ops, rcv_nxt):
6409                 SOCK_OPS_GET_FIELD(rcv_nxt, rcv_nxt, struct tcp_sock);
6410                 break;
6411
6412         case offsetof(struct bpf_sock_ops, snd_nxt):
6413                 SOCK_OPS_GET_FIELD(snd_nxt, snd_nxt, struct tcp_sock);
6414                 break;
6415
6416         case offsetof(struct bpf_sock_ops, snd_una):
6417                 SOCK_OPS_GET_FIELD(snd_una, snd_una, struct tcp_sock);
6418                 break;
6419
6420         case offsetof(struct bpf_sock_ops, mss_cache):
6421                 SOCK_OPS_GET_FIELD(mss_cache, mss_cache, struct tcp_sock);
6422                 break;
6423
6424         case offsetof(struct bpf_sock_ops, ecn_flags):
6425                 SOCK_OPS_GET_FIELD(ecn_flags, ecn_flags, struct tcp_sock);
6426                 break;
6427
6428         case offsetof(struct bpf_sock_ops, rate_delivered):
6429                 SOCK_OPS_GET_FIELD(rate_delivered, rate_delivered,
6430                                    struct tcp_sock);
6431                 break;
6432
6433         case offsetof(struct bpf_sock_ops, rate_interval_us):
6434                 SOCK_OPS_GET_FIELD(rate_interval_us, rate_interval_us,
6435                                    struct tcp_sock);
6436                 break;
6437
6438         case offsetof(struct bpf_sock_ops, packets_out):
6439                 SOCK_OPS_GET_FIELD(packets_out, packets_out, struct tcp_sock);
6440                 break;
6441
6442         case offsetof(struct bpf_sock_ops, retrans_out):
6443                 SOCK_OPS_GET_FIELD(retrans_out, retrans_out, struct tcp_sock);
6444                 break;
6445
6446         case offsetof(struct bpf_sock_ops, total_retrans):
6447                 SOCK_OPS_GET_FIELD(total_retrans, total_retrans,
6448                                    struct tcp_sock);
6449                 break;
6450
6451         case offsetof(struct bpf_sock_ops, segs_in):
6452                 SOCK_OPS_GET_FIELD(segs_in, segs_in, struct tcp_sock);
6453                 break;
6454
6455         case offsetof(struct bpf_sock_ops, data_segs_in):
6456                 SOCK_OPS_GET_FIELD(data_segs_in, data_segs_in, struct tcp_sock);
6457                 break;
6458
6459         case offsetof(struct bpf_sock_ops, segs_out):
6460                 SOCK_OPS_GET_FIELD(segs_out, segs_out, struct tcp_sock);
6461                 break;
6462
6463         case offsetof(struct bpf_sock_ops, data_segs_out):
6464                 SOCK_OPS_GET_FIELD(data_segs_out, data_segs_out,
6465                                    struct tcp_sock);
6466                 break;
6467
6468         case offsetof(struct bpf_sock_ops, lost_out):
6469                 SOCK_OPS_GET_FIELD(lost_out, lost_out, struct tcp_sock);
6470                 break;
6471
6472         case offsetof(struct bpf_sock_ops, sacked_out):
6473                 SOCK_OPS_GET_FIELD(sacked_out, sacked_out, struct tcp_sock);
6474                 break;
6475
6476         case offsetof(struct bpf_sock_ops, sk_txhash):
6477                 SOCK_OPS_GET_OR_SET_FIELD(sk_txhash, sk_txhash,
6478                                           struct sock, type);
6479                 break;
6480
6481         case offsetof(struct bpf_sock_ops, bytes_received):
6482                 SOCK_OPS_GET_FIELD(bytes_received, bytes_received,
6483                                    struct tcp_sock);
6484                 break;
6485
6486         case offsetof(struct bpf_sock_ops, bytes_acked):
6487                 SOCK_OPS_GET_FIELD(bytes_acked, bytes_acked, struct tcp_sock);
6488                 break;
6489
6490         }
6491         return insn - insn_buf;
6492 }
6493
6494 static u32 sk_skb_convert_ctx_access(enum bpf_access_type type,
6495                                      const struct bpf_insn *si,
6496                                      struct bpf_insn *insn_buf,
6497                                      struct bpf_prog *prog, u32 *target_size)
6498 {
6499         struct bpf_insn *insn = insn_buf;
6500         int off;
6501
6502         switch (si->off) {
6503         case offsetof(struct __sk_buff, data_end):
6504                 off  = si->off;
6505                 off -= offsetof(struct __sk_buff, data_end);
6506                 off += offsetof(struct sk_buff, cb);
6507                 off += offsetof(struct tcp_skb_cb, bpf.data_end);
6508                 *insn++ = BPF_LDX_MEM(BPF_SIZEOF(void *), si->dst_reg,
6509                                       si->src_reg, off);
6510                 break;
6511         default:
6512                 return bpf_convert_ctx_access(type, si, insn_buf, prog,
6513                                               target_size);
6514         }
6515
6516         return insn - insn_buf;
6517 }
6518
6519 static u32 sk_msg_convert_ctx_access(enum bpf_access_type type,
6520                                      const struct bpf_insn *si,
6521                                      struct bpf_insn *insn_buf,
6522                                      struct bpf_prog *prog, u32 *target_size)
6523 {
6524         struct bpf_insn *insn = insn_buf;
6525 #if IS_ENABLED(CONFIG_IPV6)
6526         int off;
6527 #endif
6528
6529         switch (si->off) {
6530         case offsetof(struct sk_msg_md, data):
6531                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct sk_msg_buff, data),
6532                                       si->dst_reg, si->src_reg,
6533                                       offsetof(struct sk_msg_buff, data));
6534                 break;
6535         case offsetof(struct sk_msg_md, data_end):
6536                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct sk_msg_buff, data_end),
6537                                       si->dst_reg, si->src_reg,
6538                                       offsetof(struct sk_msg_buff, data_end));
6539                 break;
6540         case offsetof(struct sk_msg_md, family):
6541                 BUILD_BUG_ON(FIELD_SIZEOF(struct sock_common, skc_family) != 2);
6542
6543                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(
6544                                               struct sk_msg_buff, sk),
6545                                       si->dst_reg, si->src_reg,
6546                                       offsetof(struct sk_msg_buff, sk));
6547                 *insn++ = BPF_LDX_MEM(BPF_H, si->dst_reg, si->dst_reg,
6548                                       offsetof(struct sock_common, skc_family));
6549                 break;
6550
6551         case offsetof(struct sk_msg_md, remote_ip4):
6552                 BUILD_BUG_ON(FIELD_SIZEOF(struct sock_common, skc_daddr) != 4);
6553
6554                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(
6555                                                 struct sk_msg_buff, sk),
6556                                       si->dst_reg, si->src_reg,
6557                                       offsetof(struct sk_msg_buff, sk));
6558                 *insn++ = BPF_LDX_MEM(BPF_W, si->dst_reg, si->dst_reg,
6559                                       offsetof(struct sock_common, skc_daddr));
6560                 break;
6561
6562         case offsetof(struct sk_msg_md, local_ip4):
6563                 BUILD_BUG_ON(FIELD_SIZEOF(struct sock_common,
6564                                           skc_rcv_saddr) != 4);
6565
6566                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(
6567                                               struct sk_msg_buff, sk),
6568                                       si->dst_reg, si->src_reg,
6569                                       offsetof(struct sk_msg_buff, sk));
6570                 *insn++ = BPF_LDX_MEM(BPF_W, si->dst_reg, si->dst_reg,
6571                                       offsetof(struct sock_common,
6572                                                skc_rcv_saddr));
6573                 break;
6574
6575         case offsetof(struct sk_msg_md, remote_ip6[0]) ...
6576              offsetof(struct sk_msg_md, remote_ip6[3]):
6577 #if IS_ENABLED(CONFIG_IPV6)
6578                 BUILD_BUG_ON(FIELD_SIZEOF(struct sock_common,
6579                                           skc_v6_daddr.s6_addr32[0]) != 4);
6580
6581                 off = si->off;
6582                 off -= offsetof(struct sk_msg_md, remote_ip6[0]);
6583                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(
6584                                                 struct sk_msg_buff, sk),
6585                                       si->dst_reg, si->src_reg,
6586                                       offsetof(struct sk_msg_buff, sk));
6587                 *insn++ = BPF_LDX_MEM(BPF_W, si->dst_reg, si->dst_reg,
6588                                       offsetof(struct sock_common,
6589                                                skc_v6_daddr.s6_addr32[0]) +
6590                                       off);
6591 #else
6592                 *insn++ = BPF_MOV32_IMM(si->dst_reg, 0);
6593 #endif
6594                 break;
6595
6596         case offsetof(struct sk_msg_md, local_ip6[0]) ...
6597              offsetof(struct sk_msg_md, local_ip6[3]):
6598 #if IS_ENABLED(CONFIG_IPV6)
6599                 BUILD_BUG_ON(FIELD_SIZEOF(struct sock_common,
6600                                           skc_v6_rcv_saddr.s6_addr32[0]) != 4);
6601
6602                 off = si->off;
6603                 off -= offsetof(struct sk_msg_md, local_ip6[0]);
6604                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(
6605                                                 struct sk_msg_buff, sk),
6606                                       si->dst_reg, si->src_reg,
6607                                       offsetof(struct sk_msg_buff, sk));
6608                 *insn++ = BPF_LDX_MEM(BPF_W, si->dst_reg, si->dst_reg,
6609                                       offsetof(struct sock_common,
6610                                                skc_v6_rcv_saddr.s6_addr32[0]) +
6611                                       off);
6612 #else
6613                 *insn++ = BPF_MOV32_IMM(si->dst_reg, 0);
6614 #endif
6615                 break;
6616
6617         case offsetof(struct sk_msg_md, remote_port):
6618                 BUILD_BUG_ON(FIELD_SIZEOF(struct sock_common, skc_dport) != 2);
6619
6620                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(
6621                                                 struct sk_msg_buff, sk),
6622                                       si->dst_reg, si->src_reg,
6623                                       offsetof(struct sk_msg_buff, sk));
6624                 *insn++ = BPF_LDX_MEM(BPF_H, si->dst_reg, si->dst_reg,
6625                                       offsetof(struct sock_common, skc_dport));
6626 #ifndef __BIG_ENDIAN_BITFIELD
6627                 *insn++ = BPF_ALU32_IMM(BPF_LSH, si->dst_reg, 16);
6628 #endif
6629                 break;
6630
6631         case offsetof(struct sk_msg_md, local_port):
6632                 BUILD_BUG_ON(FIELD_SIZEOF(struct sock_common, skc_num) != 2);
6633
6634                 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(
6635                                                 struct sk_msg_buff, sk),
6636                                       si->dst_reg, si->src_reg,
6637                                       offsetof(struct sk_msg_buff, sk));
6638                 *insn++ = BPF_LDX_MEM(BPF_H, si->dst_reg, si->dst_reg,
6639                                       offsetof(struct sock_common, skc_num));
6640                 break;
6641         }
6642
6643         return insn - insn_buf;
6644 }
6645
6646 const struct bpf_verifier_ops sk_filter_verifier_ops = {
6647         .get_func_proto         = sk_filter_func_proto,
6648         .is_valid_access        = sk_filter_is_valid_access,
6649         .convert_ctx_access     = bpf_convert_ctx_access,
6650         .gen_ld_abs             = bpf_gen_ld_abs,
6651 };
6652
6653 const struct bpf_prog_ops sk_filter_prog_ops = {
6654         .test_run               = bpf_prog_test_run_skb,
6655 };
6656
6657 const struct bpf_verifier_ops tc_cls_act_verifier_ops = {
6658         .get_func_proto         = tc_cls_act_func_proto,
6659         .is_valid_access        = tc_cls_act_is_valid_access,
6660         .convert_ctx_access     = tc_cls_act_convert_ctx_access,
6661         .gen_prologue           = tc_cls_act_prologue,
6662         .gen_ld_abs             = bpf_gen_ld_abs,
6663 };
6664
6665 const struct bpf_prog_ops tc_cls_act_prog_ops = {
6666         .test_run               = bpf_prog_test_run_skb,
6667 };
6668
6669 const struct bpf_verifier_ops xdp_verifier_ops = {
6670         .get_func_proto         = xdp_func_proto,
6671         .is_valid_access        = xdp_is_valid_access,
6672         .convert_ctx_access     = xdp_convert_ctx_access,
6673 };
6674
6675 const struct bpf_prog_ops xdp_prog_ops = {
6676         .test_run               = bpf_prog_test_run_xdp,
6677 };
6678
6679 const struct bpf_verifier_ops cg_skb_verifier_ops = {
6680         .get_func_proto         = sk_filter_func_proto,
6681         .is_valid_access        = sk_filter_is_valid_access,
6682         .convert_ctx_access     = bpf_convert_ctx_access,
6683 };
6684
6685 const struct bpf_prog_ops cg_skb_prog_ops = {
6686         .test_run               = bpf_prog_test_run_skb,
6687 };
6688
6689 const struct bpf_verifier_ops lwt_in_verifier_ops = {
6690         .get_func_proto         = lwt_in_func_proto,
6691         .is_valid_access        = lwt_is_valid_access,
6692         .convert_ctx_access     = bpf_convert_ctx_access,
6693 };
6694
6695 const struct bpf_prog_ops lwt_in_prog_ops = {
6696         .test_run               = bpf_prog_test_run_skb,
6697 };
6698
6699 const struct bpf_verifier_ops lwt_out_verifier_ops = {
6700         .get_func_proto         = lwt_out_func_proto,
6701         .is_valid_access        = lwt_is_valid_access,
6702         .convert_ctx_access     = bpf_convert_ctx_access,
6703 };
6704
6705 const struct bpf_prog_ops lwt_out_prog_ops = {
6706         .test_run               = bpf_prog_test_run_skb,
6707 };
6708
6709 const struct bpf_verifier_ops lwt_xmit_verifier_ops = {
6710         .get_func_proto         = lwt_xmit_func_proto,
6711         .is_valid_access        = lwt_is_valid_access,
6712         .convert_ctx_access     = bpf_convert_ctx_access,
6713         .gen_prologue           = tc_cls_act_prologue,
6714 };
6715
6716 const struct bpf_prog_ops lwt_xmit_prog_ops = {
6717         .test_run               = bpf_prog_test_run_skb,
6718 };
6719
6720 const struct bpf_verifier_ops lwt_seg6local_verifier_ops = {
6721         .get_func_proto         = lwt_seg6local_func_proto,
6722         .is_valid_access        = lwt_is_valid_access,
6723         .convert_ctx_access     = bpf_convert_ctx_access,
6724 };
6725
6726 const struct bpf_prog_ops lwt_seg6local_prog_ops = {
6727         .test_run               = bpf_prog_test_run_skb,
6728 };
6729
6730 const struct bpf_verifier_ops cg_sock_verifier_ops = {
6731         .get_func_proto         = sock_filter_func_proto,
6732         .is_valid_access        = sock_filter_is_valid_access,
6733         .convert_ctx_access     = sock_filter_convert_ctx_access,
6734 };
6735
6736 const struct bpf_prog_ops cg_sock_prog_ops = {
6737 };
6738
6739 const struct bpf_verifier_ops cg_sock_addr_verifier_ops = {
6740         .get_func_proto         = sock_addr_func_proto,
6741         .is_valid_access        = sock_addr_is_valid_access,
6742         .convert_ctx_access     = sock_addr_convert_ctx_access,
6743 };
6744
6745 const struct bpf_prog_ops cg_sock_addr_prog_ops = {
6746 };
6747
6748 const struct bpf_verifier_ops sock_ops_verifier_ops = {
6749         .get_func_proto         = sock_ops_func_proto,
6750         .is_valid_access        = sock_ops_is_valid_access,
6751         .convert_ctx_access     = sock_ops_convert_ctx_access,
6752 };
6753
6754 const struct bpf_prog_ops sock_ops_prog_ops = {
6755 };
6756
6757 const struct bpf_verifier_ops sk_skb_verifier_ops = {
6758         .get_func_proto         = sk_skb_func_proto,
6759         .is_valid_access        = sk_skb_is_valid_access,
6760         .convert_ctx_access     = sk_skb_convert_ctx_access,
6761         .gen_prologue           = sk_skb_prologue,
6762 };
6763
6764 const struct bpf_prog_ops sk_skb_prog_ops = {
6765 };
6766
6767 const struct bpf_verifier_ops sk_msg_verifier_ops = {
6768         .get_func_proto         = sk_msg_func_proto,
6769         .is_valid_access        = sk_msg_is_valid_access,
6770         .convert_ctx_access     = sk_msg_convert_ctx_access,
6771 };
6772
6773 const struct bpf_prog_ops sk_msg_prog_ops = {
6774 };
6775
6776 int sk_detach_filter(struct sock *sk)
6777 {
6778         int ret = -ENOENT;
6779         struct sk_filter *filter;
6780
6781         if (sock_flag(sk, SOCK_FILTER_LOCKED))
6782                 return -EPERM;
6783
6784         filter = rcu_dereference_protected(sk->sk_filter,
6785                                            lockdep_sock_is_held(sk));
6786         if (filter) {
6787                 RCU_INIT_POINTER(sk->sk_filter, NULL);
6788                 sk_filter_uncharge(sk, filter);
6789                 ret = 0;
6790         }
6791
6792         return ret;
6793 }
6794 EXPORT_SYMBOL_GPL(sk_detach_filter);
6795
6796 int sk_get_filter(struct sock *sk, struct sock_filter __user *ubuf,
6797                   unsigned int len)
6798 {
6799         struct sock_fprog_kern *fprog;
6800         struct sk_filter *filter;
6801         int ret = 0;
6802
6803         lock_sock(sk);
6804         filter = rcu_dereference_protected(sk->sk_filter,
6805                                            lockdep_sock_is_held(sk));
6806         if (!filter)
6807                 goto out;
6808
6809         /* We're copying the filter that has been originally attached,
6810          * so no conversion/decode needed anymore. eBPF programs that
6811          * have no original program cannot be dumped through this.
6812          */
6813         ret = -EACCES;
6814         fprog = filter->prog->orig_prog;
6815         if (!fprog)
6816                 goto out;
6817
6818         ret = fprog->len;
6819         if (!len)
6820                 /* User space only enquires number of filter blocks. */
6821                 goto out;
6822
6823         ret = -EINVAL;
6824         if (len < fprog->len)
6825                 goto out;
6826
6827         ret = -EFAULT;
6828         if (copy_to_user(ubuf, fprog->filter, bpf_classic_proglen(fprog)))
6829                 goto out;
6830
6831         /* Instead of bytes, the API requests to return the number
6832          * of filter blocks.
6833          */
6834         ret = fprog->len;
6835 out:
6836         release_sock(sk);
6837         return ret;
6838 }