Merge tag 'sunxi-fixes-for-4.3' of https://git.kernel.org/pub/scm/linux/kernel/git...
[linux-drm-fsl-dcu.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/in.h>
30 #include <linux/inet.h>
31 #include <linux/netdevice.h>
32 #include <linux/if_packet.h>
33 #include <linux/gfp.h>
34 #include <net/ip.h>
35 #include <net/protocol.h>
36 #include <net/netlink.h>
37 #include <linux/skbuff.h>
38 #include <net/sock.h>
39 #include <net/flow_dissector.h>
40 #include <linux/errno.h>
41 #include <linux/timer.h>
42 #include <asm/uaccess.h>
43 #include <asm/unaligned.h>
44 #include <linux/filter.h>
45 #include <linux/ratelimit.h>
46 #include <linux/seccomp.h>
47 #include <linux/if_vlan.h>
48 #include <linux/bpf.h>
49 #include <net/sch_generic.h>
50 #include <net/cls_cgroup.h>
51 #include <net/dst_metadata.h>
52
53 /**
54  *      sk_filter - run a packet through a socket filter
55  *      @sk: sock associated with &sk_buff
56  *      @skb: buffer to filter
57  *
58  * Run the filter code and then cut skb->data to correct size returned by
59  * SK_RUN_FILTER. If pkt_len is 0 we toss packet. If skb->len is smaller
60  * than pkt_len we keep whole skb->data. This is the socket level
61  * wrapper to SK_RUN_FILTER. It returns 0 if the packet should
62  * be accepted or -EPERM if the packet should be tossed.
63  *
64  */
65 int sk_filter(struct sock *sk, struct sk_buff *skb)
66 {
67         int err;
68         struct sk_filter *filter;
69
70         /*
71          * If the skb was allocated from pfmemalloc reserves, only
72          * allow SOCK_MEMALLOC sockets to use it as this socket is
73          * helping free memory
74          */
75         if (skb_pfmemalloc(skb) && !sock_flag(sk, SOCK_MEMALLOC))
76                 return -ENOMEM;
77
78         err = security_sock_rcv_skb(sk, skb);
79         if (err)
80                 return err;
81
82         rcu_read_lock();
83         filter = rcu_dereference(sk->sk_filter);
84         if (filter) {
85                 unsigned int pkt_len = SK_RUN_FILTER(filter, skb);
86
87                 err = pkt_len ? pskb_trim(skb, pkt_len) : -EPERM;
88         }
89         rcu_read_unlock();
90
91         return err;
92 }
93 EXPORT_SYMBOL(sk_filter);
94
95 static u64 __skb_get_pay_offset(u64 ctx, u64 a, u64 x, u64 r4, u64 r5)
96 {
97         return skb_get_poff((struct sk_buff *)(unsigned long) ctx);
98 }
99
100 static u64 __skb_get_nlattr(u64 ctx, u64 a, u64 x, u64 r4, u64 r5)
101 {
102         struct sk_buff *skb = (struct sk_buff *)(unsigned long) ctx;
103         struct nlattr *nla;
104
105         if (skb_is_nonlinear(skb))
106                 return 0;
107
108         if (skb->len < sizeof(struct nlattr))
109                 return 0;
110
111         if (a > skb->len - sizeof(struct nlattr))
112                 return 0;
113
114         nla = nla_find((struct nlattr *) &skb->data[a], skb->len - a, x);
115         if (nla)
116                 return (void *) nla - (void *) skb->data;
117
118         return 0;
119 }
120
121 static u64 __skb_get_nlattr_nest(u64 ctx, u64 a, u64 x, u64 r4, u64 r5)
122 {
123         struct sk_buff *skb = (struct sk_buff *)(unsigned long) ctx;
124         struct nlattr *nla;
125
126         if (skb_is_nonlinear(skb))
127                 return 0;
128
129         if (skb->len < sizeof(struct nlattr))
130                 return 0;
131
132         if (a > skb->len - sizeof(struct nlattr))
133                 return 0;
134
135         nla = (struct nlattr *) &skb->data[a];
136         if (nla->nla_len > skb->len - a)
137                 return 0;
138
139         nla = nla_find_nested(nla, x);
140         if (nla)
141                 return (void *) nla - (void *) skb->data;
142
143         return 0;
144 }
145
146 static u64 __get_raw_cpu_id(u64 ctx, u64 a, u64 x, u64 r4, u64 r5)
147 {
148         return raw_smp_processor_id();
149 }
150
151 /* note that this only generates 32-bit random numbers */
152 static u64 __get_random_u32(u64 ctx, u64 a, u64 x, u64 r4, u64 r5)
153 {
154         return prandom_u32();
155 }
156
157 static u32 convert_skb_access(int skb_field, int dst_reg, int src_reg,
158                               struct bpf_insn *insn_buf)
159 {
160         struct bpf_insn *insn = insn_buf;
161
162         switch (skb_field) {
163         case SKF_AD_MARK:
164                 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, mark) != 4);
165
166                 *insn++ = BPF_LDX_MEM(BPF_W, dst_reg, src_reg,
167                                       offsetof(struct sk_buff, mark));
168                 break;
169
170         case SKF_AD_PKTTYPE:
171                 *insn++ = BPF_LDX_MEM(BPF_B, dst_reg, src_reg, PKT_TYPE_OFFSET());
172                 *insn++ = BPF_ALU32_IMM(BPF_AND, dst_reg, PKT_TYPE_MAX);
173 #ifdef __BIG_ENDIAN_BITFIELD
174                 *insn++ = BPF_ALU32_IMM(BPF_RSH, dst_reg, 5);
175 #endif
176                 break;
177
178         case SKF_AD_QUEUE:
179                 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, queue_mapping) != 2);
180
181                 *insn++ = BPF_LDX_MEM(BPF_H, dst_reg, src_reg,
182                                       offsetof(struct sk_buff, queue_mapping));
183                 break;
184
185         case SKF_AD_VLAN_TAG:
186         case SKF_AD_VLAN_TAG_PRESENT:
187                 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, vlan_tci) != 2);
188                 BUILD_BUG_ON(VLAN_TAG_PRESENT != 0x1000);
189
190                 /* dst_reg = *(u16 *) (src_reg + offsetof(vlan_tci)) */
191                 *insn++ = BPF_LDX_MEM(BPF_H, dst_reg, src_reg,
192                                       offsetof(struct sk_buff, vlan_tci));
193                 if (skb_field == SKF_AD_VLAN_TAG) {
194                         *insn++ = BPF_ALU32_IMM(BPF_AND, dst_reg,
195                                                 ~VLAN_TAG_PRESENT);
196                 } else {
197                         /* dst_reg >>= 12 */
198                         *insn++ = BPF_ALU32_IMM(BPF_RSH, dst_reg, 12);
199                         /* dst_reg &= 1 */
200                         *insn++ = BPF_ALU32_IMM(BPF_AND, dst_reg, 1);
201                 }
202                 break;
203         }
204
205         return insn - insn_buf;
206 }
207
208 static bool convert_bpf_extensions(struct sock_filter *fp,
209                                    struct bpf_insn **insnp)
210 {
211         struct bpf_insn *insn = *insnp;
212         u32 cnt;
213
214         switch (fp->k) {
215         case SKF_AD_OFF + SKF_AD_PROTOCOL:
216                 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, protocol) != 2);
217
218                 /* A = *(u16 *) (CTX + offsetof(protocol)) */
219                 *insn++ = BPF_LDX_MEM(BPF_H, BPF_REG_A, BPF_REG_CTX,
220                                       offsetof(struct sk_buff, protocol));
221                 /* A = ntohs(A) [emitting a nop or swap16] */
222                 *insn = BPF_ENDIAN(BPF_FROM_BE, BPF_REG_A, 16);
223                 break;
224
225         case SKF_AD_OFF + SKF_AD_PKTTYPE:
226                 cnt = convert_skb_access(SKF_AD_PKTTYPE, BPF_REG_A, BPF_REG_CTX, insn);
227                 insn += cnt - 1;
228                 break;
229
230         case SKF_AD_OFF + SKF_AD_IFINDEX:
231         case SKF_AD_OFF + SKF_AD_HATYPE:
232                 BUILD_BUG_ON(FIELD_SIZEOF(struct net_device, ifindex) != 4);
233                 BUILD_BUG_ON(FIELD_SIZEOF(struct net_device, type) != 2);
234                 BUILD_BUG_ON(bytes_to_bpf_size(FIELD_SIZEOF(struct sk_buff, dev)) < 0);
235
236                 *insn++ = BPF_LDX_MEM(bytes_to_bpf_size(FIELD_SIZEOF(struct sk_buff, dev)),
237                                       BPF_REG_TMP, BPF_REG_CTX,
238                                       offsetof(struct sk_buff, dev));
239                 /* if (tmp != 0) goto pc + 1 */
240                 *insn++ = BPF_JMP_IMM(BPF_JNE, BPF_REG_TMP, 0, 1);
241                 *insn++ = BPF_EXIT_INSN();
242                 if (fp->k == SKF_AD_OFF + SKF_AD_IFINDEX)
243                         *insn = BPF_LDX_MEM(BPF_W, BPF_REG_A, BPF_REG_TMP,
244                                             offsetof(struct net_device, ifindex));
245                 else
246                         *insn = BPF_LDX_MEM(BPF_H, BPF_REG_A, BPF_REG_TMP,
247                                             offsetof(struct net_device, type));
248                 break;
249
250         case SKF_AD_OFF + SKF_AD_MARK:
251                 cnt = convert_skb_access(SKF_AD_MARK, BPF_REG_A, BPF_REG_CTX, insn);
252                 insn += cnt - 1;
253                 break;
254
255         case SKF_AD_OFF + SKF_AD_RXHASH:
256                 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, hash) != 4);
257
258                 *insn = BPF_LDX_MEM(BPF_W, BPF_REG_A, BPF_REG_CTX,
259                                     offsetof(struct sk_buff, hash));
260                 break;
261
262         case SKF_AD_OFF + SKF_AD_QUEUE:
263                 cnt = convert_skb_access(SKF_AD_QUEUE, BPF_REG_A, BPF_REG_CTX, insn);
264                 insn += cnt - 1;
265                 break;
266
267         case SKF_AD_OFF + SKF_AD_VLAN_TAG:
268                 cnt = convert_skb_access(SKF_AD_VLAN_TAG,
269                                          BPF_REG_A, BPF_REG_CTX, insn);
270                 insn += cnt - 1;
271                 break;
272
273         case SKF_AD_OFF + SKF_AD_VLAN_TAG_PRESENT:
274                 cnt = convert_skb_access(SKF_AD_VLAN_TAG_PRESENT,
275                                          BPF_REG_A, BPF_REG_CTX, insn);
276                 insn += cnt - 1;
277                 break;
278
279         case SKF_AD_OFF + SKF_AD_VLAN_TPID:
280                 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, vlan_proto) != 2);
281
282                 /* A = *(u16 *) (CTX + offsetof(vlan_proto)) */
283                 *insn++ = BPF_LDX_MEM(BPF_H, BPF_REG_A, BPF_REG_CTX,
284                                       offsetof(struct sk_buff, vlan_proto));
285                 /* A = ntohs(A) [emitting a nop or swap16] */
286                 *insn = BPF_ENDIAN(BPF_FROM_BE, BPF_REG_A, 16);
287                 break;
288
289         case SKF_AD_OFF + SKF_AD_PAY_OFFSET:
290         case SKF_AD_OFF + SKF_AD_NLATTR:
291         case SKF_AD_OFF + SKF_AD_NLATTR_NEST:
292         case SKF_AD_OFF + SKF_AD_CPU:
293         case SKF_AD_OFF + SKF_AD_RANDOM:
294                 /* arg1 = CTX */
295                 *insn++ = BPF_MOV64_REG(BPF_REG_ARG1, BPF_REG_CTX);
296                 /* arg2 = A */
297                 *insn++ = BPF_MOV64_REG(BPF_REG_ARG2, BPF_REG_A);
298                 /* arg3 = X */
299                 *insn++ = BPF_MOV64_REG(BPF_REG_ARG3, BPF_REG_X);
300                 /* Emit call(arg1=CTX, arg2=A, arg3=X) */
301                 switch (fp->k) {
302                 case SKF_AD_OFF + SKF_AD_PAY_OFFSET:
303                         *insn = BPF_EMIT_CALL(__skb_get_pay_offset);
304                         break;
305                 case SKF_AD_OFF + SKF_AD_NLATTR:
306                         *insn = BPF_EMIT_CALL(__skb_get_nlattr);
307                         break;
308                 case SKF_AD_OFF + SKF_AD_NLATTR_NEST:
309                         *insn = BPF_EMIT_CALL(__skb_get_nlattr_nest);
310                         break;
311                 case SKF_AD_OFF + SKF_AD_CPU:
312                         *insn = BPF_EMIT_CALL(__get_raw_cpu_id);
313                         break;
314                 case SKF_AD_OFF + SKF_AD_RANDOM:
315                         *insn = BPF_EMIT_CALL(__get_random_u32);
316                         break;
317                 }
318                 break;
319
320         case SKF_AD_OFF + SKF_AD_ALU_XOR_X:
321                 /* A ^= X */
322                 *insn = BPF_ALU32_REG(BPF_XOR, BPF_REG_A, BPF_REG_X);
323                 break;
324
325         default:
326                 /* This is just a dummy call to avoid letting the compiler
327                  * evict __bpf_call_base() as an optimization. Placed here
328                  * where no-one bothers.
329                  */
330                 BUG_ON(__bpf_call_base(0, 0, 0, 0, 0) != 0);
331                 return false;
332         }
333
334         *insnp = insn;
335         return true;
336 }
337
338 /**
339  *      bpf_convert_filter - convert filter program
340  *      @prog: the user passed filter program
341  *      @len: the length of the user passed filter program
342  *      @new_prog: buffer where converted program will be stored
343  *      @new_len: pointer to store length of converted program
344  *
345  * Remap 'sock_filter' style BPF instruction set to 'sock_filter_ext' style.
346  * Conversion workflow:
347  *
348  * 1) First pass for calculating the new program length:
349  *   bpf_convert_filter(old_prog, old_len, NULL, &new_len)
350  *
351  * 2) 2nd pass to remap in two passes: 1st pass finds new
352  *    jump offsets, 2nd pass remapping:
353  *   new_prog = kmalloc(sizeof(struct bpf_insn) * new_len);
354  *   bpf_convert_filter(old_prog, old_len, new_prog, &new_len);
355  *
356  * User BPF's register A is mapped to our BPF register 6, user BPF
357  * register X is mapped to BPF register 7; frame pointer is always
358  * register 10; Context 'void *ctx' is stored in register 1, that is,
359  * for socket filters: ctx == 'struct sk_buff *', for seccomp:
360  * ctx == 'struct seccomp_data *'.
361  */
362 static int bpf_convert_filter(struct sock_filter *prog, int len,
363                               struct bpf_insn *new_prog, int *new_len)
364 {
365         int new_flen = 0, pass = 0, target, i;
366         struct bpf_insn *new_insn;
367         struct sock_filter *fp;
368         int *addrs = NULL;
369         u8 bpf_src;
370
371         BUILD_BUG_ON(BPF_MEMWORDS * sizeof(u32) > MAX_BPF_STACK);
372         BUILD_BUG_ON(BPF_REG_FP + 1 != MAX_BPF_REG);
373
374         if (len <= 0 || len > BPF_MAXINSNS)
375                 return -EINVAL;
376
377         if (new_prog) {
378                 addrs = kcalloc(len, sizeof(*addrs),
379                                 GFP_KERNEL | __GFP_NOWARN);
380                 if (!addrs)
381                         return -ENOMEM;
382         }
383
384 do_pass:
385         new_insn = new_prog;
386         fp = prog;
387
388         if (new_insn)
389                 *new_insn = BPF_MOV64_REG(BPF_REG_CTX, BPF_REG_ARG1);
390         new_insn++;
391
392         for (i = 0; i < len; fp++, i++) {
393                 struct bpf_insn tmp_insns[6] = { };
394                 struct bpf_insn *insn = tmp_insns;
395
396                 if (addrs)
397                         addrs[i] = new_insn - new_prog;
398
399                 switch (fp->code) {
400                 /* All arithmetic insns and skb loads map as-is. */
401                 case BPF_ALU | BPF_ADD | BPF_X:
402                 case BPF_ALU | BPF_ADD | BPF_K:
403                 case BPF_ALU | BPF_SUB | BPF_X:
404                 case BPF_ALU | BPF_SUB | BPF_K:
405                 case BPF_ALU | BPF_AND | BPF_X:
406                 case BPF_ALU | BPF_AND | BPF_K:
407                 case BPF_ALU | BPF_OR | BPF_X:
408                 case BPF_ALU | BPF_OR | BPF_K:
409                 case BPF_ALU | BPF_LSH | BPF_X:
410                 case BPF_ALU | BPF_LSH | BPF_K:
411                 case BPF_ALU | BPF_RSH | BPF_X:
412                 case BPF_ALU | BPF_RSH | BPF_K:
413                 case BPF_ALU | BPF_XOR | BPF_X:
414                 case BPF_ALU | BPF_XOR | BPF_K:
415                 case BPF_ALU | BPF_MUL | BPF_X:
416                 case BPF_ALU | BPF_MUL | BPF_K:
417                 case BPF_ALU | BPF_DIV | BPF_X:
418                 case BPF_ALU | BPF_DIV | BPF_K:
419                 case BPF_ALU | BPF_MOD | BPF_X:
420                 case BPF_ALU | BPF_MOD | BPF_K:
421                 case BPF_ALU | BPF_NEG:
422                 case BPF_LD | BPF_ABS | BPF_W:
423                 case BPF_LD | BPF_ABS | BPF_H:
424                 case BPF_LD | BPF_ABS | BPF_B:
425                 case BPF_LD | BPF_IND | BPF_W:
426                 case BPF_LD | BPF_IND | BPF_H:
427                 case BPF_LD | BPF_IND | BPF_B:
428                         /* Check for overloaded BPF extension and
429                          * directly convert it if found, otherwise
430                          * just move on with mapping.
431                          */
432                         if (BPF_CLASS(fp->code) == BPF_LD &&
433                             BPF_MODE(fp->code) == BPF_ABS &&
434                             convert_bpf_extensions(fp, &insn))
435                                 break;
436
437                         *insn = BPF_RAW_INSN(fp->code, BPF_REG_A, BPF_REG_X, 0, fp->k);
438                         break;
439
440                 /* Jump transformation cannot use BPF block macros
441                  * everywhere as offset calculation and target updates
442                  * require a bit more work than the rest, i.e. jump
443                  * opcodes map as-is, but offsets need adjustment.
444                  */
445
446 #define BPF_EMIT_JMP                                                    \
447         do {                                                            \
448                 if (target >= len || target < 0)                        \
449                         goto err;                                       \
450                 insn->off = addrs ? addrs[target] - addrs[i] - 1 : 0;   \
451                 /* Adjust pc relative offset for 2nd or 3rd insn. */    \
452                 insn->off -= insn - tmp_insns;                          \
453         } while (0)
454
455                 case BPF_JMP | BPF_JA:
456                         target = i + fp->k + 1;
457                         insn->code = fp->code;
458                         BPF_EMIT_JMP;
459                         break;
460
461                 case BPF_JMP | BPF_JEQ | BPF_K:
462                 case BPF_JMP | BPF_JEQ | BPF_X:
463                 case BPF_JMP | BPF_JSET | BPF_K:
464                 case BPF_JMP | BPF_JSET | BPF_X:
465                 case BPF_JMP | BPF_JGT | BPF_K:
466                 case BPF_JMP | BPF_JGT | BPF_X:
467                 case BPF_JMP | BPF_JGE | BPF_K:
468                 case BPF_JMP | BPF_JGE | BPF_X:
469                         if (BPF_SRC(fp->code) == BPF_K && (int) fp->k < 0) {
470                                 /* BPF immediates are signed, zero extend
471                                  * immediate into tmp register and use it
472                                  * in compare insn.
473                                  */
474                                 *insn++ = BPF_MOV32_IMM(BPF_REG_TMP, fp->k);
475
476                                 insn->dst_reg = BPF_REG_A;
477                                 insn->src_reg = BPF_REG_TMP;
478                                 bpf_src = BPF_X;
479                         } else {
480                                 insn->dst_reg = BPF_REG_A;
481                                 insn->imm = fp->k;
482                                 bpf_src = BPF_SRC(fp->code);
483                                 insn->src_reg = bpf_src == BPF_X ? BPF_REG_X : 0;
484                         }
485
486                         /* Common case where 'jump_false' is next insn. */
487                         if (fp->jf == 0) {
488                                 insn->code = BPF_JMP | BPF_OP(fp->code) | bpf_src;
489                                 target = i + fp->jt + 1;
490                                 BPF_EMIT_JMP;
491                                 break;
492                         }
493
494                         /* Convert JEQ into JNE when 'jump_true' is next insn. */
495                         if (fp->jt == 0 && BPF_OP(fp->code) == BPF_JEQ) {
496                                 insn->code = BPF_JMP | BPF_JNE | bpf_src;
497                                 target = i + fp->jf + 1;
498                                 BPF_EMIT_JMP;
499                                 break;
500                         }
501
502                         /* Other jumps are mapped into two insns: Jxx and JA. */
503                         target = i + fp->jt + 1;
504                         insn->code = BPF_JMP | BPF_OP(fp->code) | bpf_src;
505                         BPF_EMIT_JMP;
506                         insn++;
507
508                         insn->code = BPF_JMP | BPF_JA;
509                         target = i + fp->jf + 1;
510                         BPF_EMIT_JMP;
511                         break;
512
513                 /* ldxb 4 * ([14] & 0xf) is remaped into 6 insns. */
514                 case BPF_LDX | BPF_MSH | BPF_B:
515                         /* tmp = A */
516                         *insn++ = BPF_MOV64_REG(BPF_REG_TMP, BPF_REG_A);
517                         /* A = BPF_R0 = *(u8 *) (skb->data + K) */
518                         *insn++ = BPF_LD_ABS(BPF_B, fp->k);
519                         /* A &= 0xf */
520                         *insn++ = BPF_ALU32_IMM(BPF_AND, BPF_REG_A, 0xf);
521                         /* A <<= 2 */
522                         *insn++ = BPF_ALU32_IMM(BPF_LSH, BPF_REG_A, 2);
523                         /* X = A */
524                         *insn++ = BPF_MOV64_REG(BPF_REG_X, BPF_REG_A);
525                         /* A = tmp */
526                         *insn = BPF_MOV64_REG(BPF_REG_A, BPF_REG_TMP);
527                         break;
528
529                 /* RET_K, RET_A are remaped into 2 insns. */
530                 case BPF_RET | BPF_A:
531                 case BPF_RET | BPF_K:
532                         *insn++ = BPF_MOV32_RAW(BPF_RVAL(fp->code) == BPF_K ?
533                                                 BPF_K : BPF_X, BPF_REG_0,
534                                                 BPF_REG_A, fp->k);
535                         *insn = BPF_EXIT_INSN();
536                         break;
537
538                 /* Store to stack. */
539                 case BPF_ST:
540                 case BPF_STX:
541                         *insn = BPF_STX_MEM(BPF_W, BPF_REG_FP, BPF_CLASS(fp->code) ==
542                                             BPF_ST ? BPF_REG_A : BPF_REG_X,
543                                             -(BPF_MEMWORDS - fp->k) * 4);
544                         break;
545
546                 /* Load from stack. */
547                 case BPF_LD | BPF_MEM:
548                 case BPF_LDX | BPF_MEM:
549                         *insn = BPF_LDX_MEM(BPF_W, BPF_CLASS(fp->code) == BPF_LD  ?
550                                             BPF_REG_A : BPF_REG_X, BPF_REG_FP,
551                                             -(BPF_MEMWORDS - fp->k) * 4);
552                         break;
553
554                 /* A = K or X = K */
555                 case BPF_LD | BPF_IMM:
556                 case BPF_LDX | BPF_IMM:
557                         *insn = BPF_MOV32_IMM(BPF_CLASS(fp->code) == BPF_LD ?
558                                               BPF_REG_A : BPF_REG_X, fp->k);
559                         break;
560
561                 /* X = A */
562                 case BPF_MISC | BPF_TAX:
563                         *insn = BPF_MOV64_REG(BPF_REG_X, BPF_REG_A);
564                         break;
565
566                 /* A = X */
567                 case BPF_MISC | BPF_TXA:
568                         *insn = BPF_MOV64_REG(BPF_REG_A, BPF_REG_X);
569                         break;
570
571                 /* A = skb->len or X = skb->len */
572                 case BPF_LD | BPF_W | BPF_LEN:
573                 case BPF_LDX | BPF_W | BPF_LEN:
574                         *insn = BPF_LDX_MEM(BPF_W, BPF_CLASS(fp->code) == BPF_LD ?
575                                             BPF_REG_A : BPF_REG_X, BPF_REG_CTX,
576                                             offsetof(struct sk_buff, len));
577                         break;
578
579                 /* Access seccomp_data fields. */
580                 case BPF_LDX | BPF_ABS | BPF_W:
581                         /* A = *(u32 *) (ctx + K) */
582                         *insn = BPF_LDX_MEM(BPF_W, BPF_REG_A, BPF_REG_CTX, fp->k);
583                         break;
584
585                 /* Unknown instruction. */
586                 default:
587                         goto err;
588                 }
589
590                 insn++;
591                 if (new_prog)
592                         memcpy(new_insn, tmp_insns,
593                                sizeof(*insn) * (insn - tmp_insns));
594                 new_insn += insn - tmp_insns;
595         }
596
597         if (!new_prog) {
598                 /* Only calculating new length. */
599                 *new_len = new_insn - new_prog;
600                 return 0;
601         }
602
603         pass++;
604         if (new_flen != new_insn - new_prog) {
605                 new_flen = new_insn - new_prog;
606                 if (pass > 2)
607                         goto err;
608                 goto do_pass;
609         }
610
611         kfree(addrs);
612         BUG_ON(*new_len != new_flen);
613         return 0;
614 err:
615         kfree(addrs);
616         return -EINVAL;
617 }
618
619 /* Security:
620  *
621  * As we dont want to clear mem[] array for each packet going through
622  * __bpf_prog_run(), we check that filter loaded by user never try to read
623  * a cell if not previously written, and we check all branches to be sure
624  * a malicious user doesn't try to abuse us.
625  */
626 static int check_load_and_stores(const struct sock_filter *filter, int flen)
627 {
628         u16 *masks, memvalid = 0; /* One bit per cell, 16 cells */
629         int pc, ret = 0;
630
631         BUILD_BUG_ON(BPF_MEMWORDS > 16);
632
633         masks = kmalloc_array(flen, sizeof(*masks), GFP_KERNEL);
634         if (!masks)
635                 return -ENOMEM;
636
637         memset(masks, 0xff, flen * sizeof(*masks));
638
639         for (pc = 0; pc < flen; pc++) {
640                 memvalid &= masks[pc];
641
642                 switch (filter[pc].code) {
643                 case BPF_ST:
644                 case BPF_STX:
645                         memvalid |= (1 << filter[pc].k);
646                         break;
647                 case BPF_LD | BPF_MEM:
648                 case BPF_LDX | BPF_MEM:
649                         if (!(memvalid & (1 << filter[pc].k))) {
650                                 ret = -EINVAL;
651                                 goto error;
652                         }
653                         break;
654                 case BPF_JMP | BPF_JA:
655                         /* A jump must set masks on target */
656                         masks[pc + 1 + filter[pc].k] &= memvalid;
657                         memvalid = ~0;
658                         break;
659                 case BPF_JMP | BPF_JEQ | BPF_K:
660                 case BPF_JMP | BPF_JEQ | BPF_X:
661                 case BPF_JMP | BPF_JGE | BPF_K:
662                 case BPF_JMP | BPF_JGE | BPF_X:
663                 case BPF_JMP | BPF_JGT | BPF_K:
664                 case BPF_JMP | BPF_JGT | BPF_X:
665                 case BPF_JMP | BPF_JSET | BPF_K:
666                 case BPF_JMP | BPF_JSET | BPF_X:
667                         /* A jump must set masks on targets */
668                         masks[pc + 1 + filter[pc].jt] &= memvalid;
669                         masks[pc + 1 + filter[pc].jf] &= memvalid;
670                         memvalid = ~0;
671                         break;
672                 }
673         }
674 error:
675         kfree(masks);
676         return ret;
677 }
678
679 static bool chk_code_allowed(u16 code_to_probe)
680 {
681         static const bool codes[] = {
682                 /* 32 bit ALU operations */
683                 [BPF_ALU | BPF_ADD | BPF_K] = true,
684                 [BPF_ALU | BPF_ADD | BPF_X] = true,
685                 [BPF_ALU | BPF_SUB | BPF_K] = true,
686                 [BPF_ALU | BPF_SUB | BPF_X] = true,
687                 [BPF_ALU | BPF_MUL | BPF_K] = true,
688                 [BPF_ALU | BPF_MUL | BPF_X] = true,
689                 [BPF_ALU | BPF_DIV | BPF_K] = true,
690                 [BPF_ALU | BPF_DIV | BPF_X] = true,
691                 [BPF_ALU | BPF_MOD | BPF_K] = true,
692                 [BPF_ALU | BPF_MOD | BPF_X] = true,
693                 [BPF_ALU | BPF_AND | BPF_K] = true,
694                 [BPF_ALU | BPF_AND | BPF_X] = true,
695                 [BPF_ALU | BPF_OR | BPF_K] = true,
696                 [BPF_ALU | BPF_OR | BPF_X] = true,
697                 [BPF_ALU | BPF_XOR | BPF_K] = true,
698                 [BPF_ALU | BPF_XOR | BPF_X] = true,
699                 [BPF_ALU | BPF_LSH | BPF_K] = true,
700                 [BPF_ALU | BPF_LSH | BPF_X] = true,
701                 [BPF_ALU | BPF_RSH | BPF_K] = true,
702                 [BPF_ALU | BPF_RSH | BPF_X] = true,
703                 [BPF_ALU | BPF_NEG] = true,
704                 /* Load instructions */
705                 [BPF_LD | BPF_W | BPF_ABS] = true,
706                 [BPF_LD | BPF_H | BPF_ABS] = true,
707                 [BPF_LD | BPF_B | BPF_ABS] = true,
708                 [BPF_LD | BPF_W | BPF_LEN] = true,
709                 [BPF_LD | BPF_W | BPF_IND] = true,
710                 [BPF_LD | BPF_H | BPF_IND] = true,
711                 [BPF_LD | BPF_B | BPF_IND] = true,
712                 [BPF_LD | BPF_IMM] = true,
713                 [BPF_LD | BPF_MEM] = true,
714                 [BPF_LDX | BPF_W | BPF_LEN] = true,
715                 [BPF_LDX | BPF_B | BPF_MSH] = true,
716                 [BPF_LDX | BPF_IMM] = true,
717                 [BPF_LDX | BPF_MEM] = true,
718                 /* Store instructions */
719                 [BPF_ST] = true,
720                 [BPF_STX] = true,
721                 /* Misc instructions */
722                 [BPF_MISC | BPF_TAX] = true,
723                 [BPF_MISC | BPF_TXA] = true,
724                 /* Return instructions */
725                 [BPF_RET | BPF_K] = true,
726                 [BPF_RET | BPF_A] = true,
727                 /* Jump instructions */
728                 [BPF_JMP | BPF_JA] = true,
729                 [BPF_JMP | BPF_JEQ | BPF_K] = true,
730                 [BPF_JMP | BPF_JEQ | BPF_X] = true,
731                 [BPF_JMP | BPF_JGE | BPF_K] = true,
732                 [BPF_JMP | BPF_JGE | BPF_X] = true,
733                 [BPF_JMP | BPF_JGT | BPF_K] = true,
734                 [BPF_JMP | BPF_JGT | BPF_X] = true,
735                 [BPF_JMP | BPF_JSET | BPF_K] = true,
736                 [BPF_JMP | BPF_JSET | BPF_X] = true,
737         };
738
739         if (code_to_probe >= ARRAY_SIZE(codes))
740                 return false;
741
742         return codes[code_to_probe];
743 }
744
745 /**
746  *      bpf_check_classic - verify socket filter code
747  *      @filter: filter to verify
748  *      @flen: length of filter
749  *
750  * Check the user's filter code. If we let some ugly
751  * filter code slip through kaboom! The filter must contain
752  * no references or jumps that are out of range, no illegal
753  * instructions, and must end with a RET instruction.
754  *
755  * All jumps are forward as they are not signed.
756  *
757  * Returns 0 if the rule set is legal or -EINVAL if not.
758  */
759 static int bpf_check_classic(const struct sock_filter *filter,
760                              unsigned int flen)
761 {
762         bool anc_found;
763         int pc;
764
765         if (flen == 0 || flen > BPF_MAXINSNS)
766                 return -EINVAL;
767
768         /* Check the filter code now */
769         for (pc = 0; pc < flen; pc++) {
770                 const struct sock_filter *ftest = &filter[pc];
771
772                 /* May we actually operate on this code? */
773                 if (!chk_code_allowed(ftest->code))
774                         return -EINVAL;
775
776                 /* Some instructions need special checks */
777                 switch (ftest->code) {
778                 case BPF_ALU | BPF_DIV | BPF_K:
779                 case BPF_ALU | BPF_MOD | BPF_K:
780                         /* Check for division by zero */
781                         if (ftest->k == 0)
782                                 return -EINVAL;
783                         break;
784                 case BPF_LD | BPF_MEM:
785                 case BPF_LDX | BPF_MEM:
786                 case BPF_ST:
787                 case BPF_STX:
788                         /* Check for invalid memory addresses */
789                         if (ftest->k >= BPF_MEMWORDS)
790                                 return -EINVAL;
791                         break;
792                 case BPF_JMP | BPF_JA:
793                         /* Note, the large ftest->k might cause loops.
794                          * Compare this with conditional jumps below,
795                          * where offsets are limited. --ANK (981016)
796                          */
797                         if (ftest->k >= (unsigned int)(flen - pc - 1))
798                                 return -EINVAL;
799                         break;
800                 case BPF_JMP | BPF_JEQ | BPF_K:
801                 case BPF_JMP | BPF_JEQ | BPF_X:
802                 case BPF_JMP | BPF_JGE | BPF_K:
803                 case BPF_JMP | BPF_JGE | BPF_X:
804                 case BPF_JMP | BPF_JGT | BPF_K:
805                 case BPF_JMP | BPF_JGT | BPF_X:
806                 case BPF_JMP | BPF_JSET | BPF_K:
807                 case BPF_JMP | BPF_JSET | BPF_X:
808                         /* Both conditionals must be safe */
809                         if (pc + ftest->jt + 1 >= flen ||
810                             pc + ftest->jf + 1 >= flen)
811                                 return -EINVAL;
812                         break;
813                 case BPF_LD | BPF_W | BPF_ABS:
814                 case BPF_LD | BPF_H | BPF_ABS:
815                 case BPF_LD | BPF_B | BPF_ABS:
816                         anc_found = false;
817                         if (bpf_anc_helper(ftest) & BPF_ANC)
818                                 anc_found = true;
819                         /* Ancillary operation unknown or unsupported */
820                         if (anc_found == false && ftest->k >= SKF_AD_OFF)
821                                 return -EINVAL;
822                 }
823         }
824
825         /* Last instruction must be a RET code */
826         switch (filter[flen - 1].code) {
827         case BPF_RET | BPF_K:
828         case BPF_RET | BPF_A:
829                 return check_load_and_stores(filter, flen);
830         }
831
832         return -EINVAL;
833 }
834
835 static int bpf_prog_store_orig_filter(struct bpf_prog *fp,
836                                       const struct sock_fprog *fprog)
837 {
838         unsigned int fsize = bpf_classic_proglen(fprog);
839         struct sock_fprog_kern *fkprog;
840
841         fp->orig_prog = kmalloc(sizeof(*fkprog), GFP_KERNEL);
842         if (!fp->orig_prog)
843                 return -ENOMEM;
844
845         fkprog = fp->orig_prog;
846         fkprog->len = fprog->len;
847
848         fkprog->filter = kmemdup(fp->insns, fsize,
849                                  GFP_KERNEL | __GFP_NOWARN);
850         if (!fkprog->filter) {
851                 kfree(fp->orig_prog);
852                 return -ENOMEM;
853         }
854
855         return 0;
856 }
857
858 static void bpf_release_orig_filter(struct bpf_prog *fp)
859 {
860         struct sock_fprog_kern *fprog = fp->orig_prog;
861
862         if (fprog) {
863                 kfree(fprog->filter);
864                 kfree(fprog);
865         }
866 }
867
868 static void __bpf_prog_release(struct bpf_prog *prog)
869 {
870         if (prog->type == BPF_PROG_TYPE_SOCKET_FILTER) {
871                 bpf_prog_put(prog);
872         } else {
873                 bpf_release_orig_filter(prog);
874                 bpf_prog_free(prog);
875         }
876 }
877
878 static void __sk_filter_release(struct sk_filter *fp)
879 {
880         __bpf_prog_release(fp->prog);
881         kfree(fp);
882 }
883
884 /**
885  *      sk_filter_release_rcu - Release a socket filter by rcu_head
886  *      @rcu: rcu_head that contains the sk_filter to free
887  */
888 static void sk_filter_release_rcu(struct rcu_head *rcu)
889 {
890         struct sk_filter *fp = container_of(rcu, struct sk_filter, rcu);
891
892         __sk_filter_release(fp);
893 }
894
895 /**
896  *      sk_filter_release - release a socket filter
897  *      @fp: filter to remove
898  *
899  *      Remove a filter from a socket and release its resources.
900  */
901 static void sk_filter_release(struct sk_filter *fp)
902 {
903         if (atomic_dec_and_test(&fp->refcnt))
904                 call_rcu(&fp->rcu, sk_filter_release_rcu);
905 }
906
907 void sk_filter_uncharge(struct sock *sk, struct sk_filter *fp)
908 {
909         u32 filter_size = bpf_prog_size(fp->prog->len);
910
911         atomic_sub(filter_size, &sk->sk_omem_alloc);
912         sk_filter_release(fp);
913 }
914
915 /* try to charge the socket memory if there is space available
916  * return true on success
917  */
918 bool sk_filter_charge(struct sock *sk, struct sk_filter *fp)
919 {
920         u32 filter_size = bpf_prog_size(fp->prog->len);
921
922         /* same check as in sock_kmalloc() */
923         if (filter_size <= sysctl_optmem_max &&
924             atomic_read(&sk->sk_omem_alloc) + filter_size < sysctl_optmem_max) {
925                 atomic_inc(&fp->refcnt);
926                 atomic_add(filter_size, &sk->sk_omem_alloc);
927                 return true;
928         }
929         return false;
930 }
931
932 static struct bpf_prog *bpf_migrate_filter(struct bpf_prog *fp)
933 {
934         struct sock_filter *old_prog;
935         struct bpf_prog *old_fp;
936         int err, new_len, old_len = fp->len;
937
938         /* We are free to overwrite insns et al right here as it
939          * won't be used at this point in time anymore internally
940          * after the migration to the internal BPF instruction
941          * representation.
942          */
943         BUILD_BUG_ON(sizeof(struct sock_filter) !=
944                      sizeof(struct bpf_insn));
945
946         /* Conversion cannot happen on overlapping memory areas,
947          * so we need to keep the user BPF around until the 2nd
948          * pass. At this time, the user BPF is stored in fp->insns.
949          */
950         old_prog = kmemdup(fp->insns, old_len * sizeof(struct sock_filter),
951                            GFP_KERNEL | __GFP_NOWARN);
952         if (!old_prog) {
953                 err = -ENOMEM;
954                 goto out_err;
955         }
956
957         /* 1st pass: calculate the new program length. */
958         err = bpf_convert_filter(old_prog, old_len, NULL, &new_len);
959         if (err)
960                 goto out_err_free;
961
962         /* Expand fp for appending the new filter representation. */
963         old_fp = fp;
964         fp = bpf_prog_realloc(old_fp, bpf_prog_size(new_len), 0);
965         if (!fp) {
966                 /* The old_fp is still around in case we couldn't
967                  * allocate new memory, so uncharge on that one.
968                  */
969                 fp = old_fp;
970                 err = -ENOMEM;
971                 goto out_err_free;
972         }
973
974         fp->len = new_len;
975
976         /* 2nd pass: remap sock_filter insns into bpf_insn insns. */
977         err = bpf_convert_filter(old_prog, old_len, fp->insnsi, &new_len);
978         if (err)
979                 /* 2nd bpf_convert_filter() can fail only if it fails
980                  * to allocate memory, remapping must succeed. Note,
981                  * that at this time old_fp has already been released
982                  * by krealloc().
983                  */
984                 goto out_err_free;
985
986         bpf_prog_select_runtime(fp);
987
988         kfree(old_prog);
989         return fp;
990
991 out_err_free:
992         kfree(old_prog);
993 out_err:
994         __bpf_prog_release(fp);
995         return ERR_PTR(err);
996 }
997
998 static struct bpf_prog *bpf_prepare_filter(struct bpf_prog *fp,
999                                            bpf_aux_classic_check_t trans)
1000 {
1001         int err;
1002
1003         fp->bpf_func = NULL;
1004         fp->jited = false;
1005
1006         err = bpf_check_classic(fp->insns, fp->len);
1007         if (err) {
1008                 __bpf_prog_release(fp);
1009                 return ERR_PTR(err);
1010         }
1011
1012         /* There might be additional checks and transformations
1013          * needed on classic filters, f.e. in case of seccomp.
1014          */
1015         if (trans) {
1016                 err = trans(fp->insns, fp->len);
1017                 if (err) {
1018                         __bpf_prog_release(fp);
1019                         return ERR_PTR(err);
1020                 }
1021         }
1022
1023         /* Probe if we can JIT compile the filter and if so, do
1024          * the compilation of the filter.
1025          */
1026         bpf_jit_compile(fp);
1027
1028         /* JIT compiler couldn't process this filter, so do the
1029          * internal BPF translation for the optimized interpreter.
1030          */
1031         if (!fp->jited)
1032                 fp = bpf_migrate_filter(fp);
1033
1034         return fp;
1035 }
1036
1037 /**
1038  *      bpf_prog_create - create an unattached filter
1039  *      @pfp: the unattached filter that is created
1040  *      @fprog: the filter program
1041  *
1042  * Create a filter independent of any socket. We first run some
1043  * sanity checks on it to make sure it does not explode on us later.
1044  * If an error occurs or there is insufficient memory for the filter
1045  * a negative errno code is returned. On success the return is zero.
1046  */
1047 int bpf_prog_create(struct bpf_prog **pfp, struct sock_fprog_kern *fprog)
1048 {
1049         unsigned int fsize = bpf_classic_proglen(fprog);
1050         struct bpf_prog *fp;
1051
1052         /* Make sure new filter is there and in the right amounts. */
1053         if (fprog->filter == NULL)
1054                 return -EINVAL;
1055
1056         fp = bpf_prog_alloc(bpf_prog_size(fprog->len), 0);
1057         if (!fp)
1058                 return -ENOMEM;
1059
1060         memcpy(fp->insns, fprog->filter, fsize);
1061
1062         fp->len = fprog->len;
1063         /* Since unattached filters are not copied back to user
1064          * space through sk_get_filter(), we do not need to hold
1065          * a copy here, and can spare us the work.
1066          */
1067         fp->orig_prog = NULL;
1068
1069         /* bpf_prepare_filter() already takes care of freeing
1070          * memory in case something goes wrong.
1071          */
1072         fp = bpf_prepare_filter(fp, NULL);
1073         if (IS_ERR(fp))
1074                 return PTR_ERR(fp);
1075
1076         *pfp = fp;
1077         return 0;
1078 }
1079 EXPORT_SYMBOL_GPL(bpf_prog_create);
1080
1081 /**
1082  *      bpf_prog_create_from_user - create an unattached filter from user buffer
1083  *      @pfp: the unattached filter that is created
1084  *      @fprog: the filter program
1085  *      @trans: post-classic verifier transformation handler
1086  *
1087  * This function effectively does the same as bpf_prog_create(), only
1088  * that it builds up its insns buffer from user space provided buffer.
1089  * It also allows for passing a bpf_aux_classic_check_t handler.
1090  */
1091 int bpf_prog_create_from_user(struct bpf_prog **pfp, struct sock_fprog *fprog,
1092                               bpf_aux_classic_check_t trans)
1093 {
1094         unsigned int fsize = bpf_classic_proglen(fprog);
1095         struct bpf_prog *fp;
1096
1097         /* Make sure new filter is there and in the right amounts. */
1098         if (fprog->filter == NULL)
1099                 return -EINVAL;
1100
1101         fp = bpf_prog_alloc(bpf_prog_size(fprog->len), 0);
1102         if (!fp)
1103                 return -ENOMEM;
1104
1105         if (copy_from_user(fp->insns, fprog->filter, fsize)) {
1106                 __bpf_prog_free(fp);
1107                 return -EFAULT;
1108         }
1109
1110         fp->len = fprog->len;
1111         /* Since unattached filters are not copied back to user
1112          * space through sk_get_filter(), we do not need to hold
1113          * a copy here, and can spare us the work.
1114          */
1115         fp->orig_prog = NULL;
1116
1117         /* bpf_prepare_filter() already takes care of freeing
1118          * memory in case something goes wrong.
1119          */
1120         fp = bpf_prepare_filter(fp, trans);
1121         if (IS_ERR(fp))
1122                 return PTR_ERR(fp);
1123
1124         *pfp = fp;
1125         return 0;
1126 }
1127 EXPORT_SYMBOL_GPL(bpf_prog_create_from_user);
1128
1129 void bpf_prog_destroy(struct bpf_prog *fp)
1130 {
1131         __bpf_prog_release(fp);
1132 }
1133 EXPORT_SYMBOL_GPL(bpf_prog_destroy);
1134
1135 static int __sk_attach_prog(struct bpf_prog *prog, struct sock *sk)
1136 {
1137         struct sk_filter *fp, *old_fp;
1138
1139         fp = kmalloc(sizeof(*fp), GFP_KERNEL);
1140         if (!fp)
1141                 return -ENOMEM;
1142
1143         fp->prog = prog;
1144         atomic_set(&fp->refcnt, 0);
1145
1146         if (!sk_filter_charge(sk, fp)) {
1147                 kfree(fp);
1148                 return -ENOMEM;
1149         }
1150
1151         old_fp = rcu_dereference_protected(sk->sk_filter,
1152                                            sock_owned_by_user(sk));
1153         rcu_assign_pointer(sk->sk_filter, fp);
1154
1155         if (old_fp)
1156                 sk_filter_uncharge(sk, old_fp);
1157
1158         return 0;
1159 }
1160
1161 /**
1162  *      sk_attach_filter - attach a socket filter
1163  *      @fprog: the filter program
1164  *      @sk: the socket to use
1165  *
1166  * Attach the user's filter code. We first run some sanity checks on
1167  * it to make sure it does not explode on us later. If an error
1168  * occurs or there is insufficient memory for the filter a negative
1169  * errno code is returned. On success the return is zero.
1170  */
1171 int sk_attach_filter(struct sock_fprog *fprog, struct sock *sk)
1172 {
1173         unsigned int fsize = bpf_classic_proglen(fprog);
1174         unsigned int bpf_fsize = bpf_prog_size(fprog->len);
1175         struct bpf_prog *prog;
1176         int err;
1177
1178         if (sock_flag(sk, SOCK_FILTER_LOCKED))
1179                 return -EPERM;
1180
1181         /* Make sure new filter is there and in the right amounts. */
1182         if (fprog->filter == NULL)
1183                 return -EINVAL;
1184
1185         prog = bpf_prog_alloc(bpf_fsize, 0);
1186         if (!prog)
1187                 return -ENOMEM;
1188
1189         if (copy_from_user(prog->insns, fprog->filter, fsize)) {
1190                 __bpf_prog_free(prog);
1191                 return -EFAULT;
1192         }
1193
1194         prog->len = fprog->len;
1195
1196         err = bpf_prog_store_orig_filter(prog, fprog);
1197         if (err) {
1198                 __bpf_prog_free(prog);
1199                 return -ENOMEM;
1200         }
1201
1202         /* bpf_prepare_filter() already takes care of freeing
1203          * memory in case something goes wrong.
1204          */
1205         prog = bpf_prepare_filter(prog, NULL);
1206         if (IS_ERR(prog))
1207                 return PTR_ERR(prog);
1208
1209         err = __sk_attach_prog(prog, sk);
1210         if (err < 0) {
1211                 __bpf_prog_release(prog);
1212                 return err;
1213         }
1214
1215         return 0;
1216 }
1217 EXPORT_SYMBOL_GPL(sk_attach_filter);
1218
1219 int sk_attach_bpf(u32 ufd, struct sock *sk)
1220 {
1221         struct bpf_prog *prog;
1222         int err;
1223
1224         if (sock_flag(sk, SOCK_FILTER_LOCKED))
1225                 return -EPERM;
1226
1227         prog = bpf_prog_get(ufd);
1228         if (IS_ERR(prog))
1229                 return PTR_ERR(prog);
1230
1231         if (prog->type != BPF_PROG_TYPE_SOCKET_FILTER) {
1232                 bpf_prog_put(prog);
1233                 return -EINVAL;
1234         }
1235
1236         err = __sk_attach_prog(prog, sk);
1237         if (err < 0) {
1238                 bpf_prog_put(prog);
1239                 return err;
1240         }
1241
1242         return 0;
1243 }
1244
1245 #define BPF_RECOMPUTE_CSUM(flags)       ((flags) & 1)
1246
1247 static u64 bpf_skb_store_bytes(u64 r1, u64 r2, u64 r3, u64 r4, u64 flags)
1248 {
1249         struct sk_buff *skb = (struct sk_buff *) (long) r1;
1250         int offset = (int) r2;
1251         void *from = (void *) (long) r3;
1252         unsigned int len = (unsigned int) r4;
1253         char buf[16];
1254         void *ptr;
1255
1256         /* bpf verifier guarantees that:
1257          * 'from' pointer points to bpf program stack
1258          * 'len' bytes of it were initialized
1259          * 'len' > 0
1260          * 'skb' is a valid pointer to 'struct sk_buff'
1261          *
1262          * so check for invalid 'offset' and too large 'len'
1263          */
1264         if (unlikely((u32) offset > 0xffff || len > sizeof(buf)))
1265                 return -EFAULT;
1266
1267         if (unlikely(skb_cloned(skb) &&
1268                      !skb_clone_writable(skb, offset + len)))
1269                 return -EFAULT;
1270
1271         ptr = skb_header_pointer(skb, offset, len, buf);
1272         if (unlikely(!ptr))
1273                 return -EFAULT;
1274
1275         if (BPF_RECOMPUTE_CSUM(flags))
1276                 skb_postpull_rcsum(skb, ptr, len);
1277
1278         memcpy(ptr, from, len);
1279
1280         if (ptr == buf)
1281                 /* skb_store_bits cannot return -EFAULT here */
1282                 skb_store_bits(skb, offset, ptr, len);
1283
1284         if (BPF_RECOMPUTE_CSUM(flags) && skb->ip_summed == CHECKSUM_COMPLETE)
1285                 skb->csum = csum_add(skb->csum, csum_partial(ptr, len, 0));
1286         return 0;
1287 }
1288
1289 const struct bpf_func_proto bpf_skb_store_bytes_proto = {
1290         .func           = bpf_skb_store_bytes,
1291         .gpl_only       = false,
1292         .ret_type       = RET_INTEGER,
1293         .arg1_type      = ARG_PTR_TO_CTX,
1294         .arg2_type      = ARG_ANYTHING,
1295         .arg3_type      = ARG_PTR_TO_STACK,
1296         .arg4_type      = ARG_CONST_STACK_SIZE,
1297         .arg5_type      = ARG_ANYTHING,
1298 };
1299
1300 #define BPF_HEADER_FIELD_SIZE(flags)    ((flags) & 0x0f)
1301 #define BPF_IS_PSEUDO_HEADER(flags)     ((flags) & 0x10)
1302
1303 static u64 bpf_l3_csum_replace(u64 r1, u64 r2, u64 from, u64 to, u64 flags)
1304 {
1305         struct sk_buff *skb = (struct sk_buff *) (long) r1;
1306         int offset = (int) r2;
1307         __sum16 sum, *ptr;
1308
1309         if (unlikely((u32) offset > 0xffff))
1310                 return -EFAULT;
1311
1312         if (unlikely(skb_cloned(skb) &&
1313                      !skb_clone_writable(skb, offset + sizeof(sum))))
1314                 return -EFAULT;
1315
1316         ptr = skb_header_pointer(skb, offset, sizeof(sum), &sum);
1317         if (unlikely(!ptr))
1318                 return -EFAULT;
1319
1320         switch (BPF_HEADER_FIELD_SIZE(flags)) {
1321         case 2:
1322                 csum_replace2(ptr, from, to);
1323                 break;
1324         case 4:
1325                 csum_replace4(ptr, from, to);
1326                 break;
1327         default:
1328                 return -EINVAL;
1329         }
1330
1331         if (ptr == &sum)
1332                 /* skb_store_bits guaranteed to not return -EFAULT here */
1333                 skb_store_bits(skb, offset, ptr, sizeof(sum));
1334
1335         return 0;
1336 }
1337
1338 const struct bpf_func_proto bpf_l3_csum_replace_proto = {
1339         .func           = bpf_l3_csum_replace,
1340         .gpl_only       = false,
1341         .ret_type       = RET_INTEGER,
1342         .arg1_type      = ARG_PTR_TO_CTX,
1343         .arg2_type      = ARG_ANYTHING,
1344         .arg3_type      = ARG_ANYTHING,
1345         .arg4_type      = ARG_ANYTHING,
1346         .arg5_type      = ARG_ANYTHING,
1347 };
1348
1349 static u64 bpf_l4_csum_replace(u64 r1, u64 r2, u64 from, u64 to, u64 flags)
1350 {
1351         struct sk_buff *skb = (struct sk_buff *) (long) r1;
1352         bool is_pseudo = !!BPF_IS_PSEUDO_HEADER(flags);
1353         int offset = (int) r2;
1354         __sum16 sum, *ptr;
1355
1356         if (unlikely((u32) offset > 0xffff))
1357                 return -EFAULT;
1358
1359         if (unlikely(skb_cloned(skb) &&
1360                      !skb_clone_writable(skb, offset + sizeof(sum))))
1361                 return -EFAULT;
1362
1363         ptr = skb_header_pointer(skb, offset, sizeof(sum), &sum);
1364         if (unlikely(!ptr))
1365                 return -EFAULT;
1366
1367         switch (BPF_HEADER_FIELD_SIZE(flags)) {
1368         case 2:
1369                 inet_proto_csum_replace2(ptr, skb, from, to, is_pseudo);
1370                 break;
1371         case 4:
1372                 inet_proto_csum_replace4(ptr, skb, from, to, is_pseudo);
1373                 break;
1374         default:
1375                 return -EINVAL;
1376         }
1377
1378         if (ptr == &sum)
1379                 /* skb_store_bits guaranteed to not return -EFAULT here */
1380                 skb_store_bits(skb, offset, ptr, sizeof(sum));
1381
1382         return 0;
1383 }
1384
1385 const struct bpf_func_proto bpf_l4_csum_replace_proto = {
1386         .func           = bpf_l4_csum_replace,
1387         .gpl_only       = false,
1388         .ret_type       = RET_INTEGER,
1389         .arg1_type      = ARG_PTR_TO_CTX,
1390         .arg2_type      = ARG_ANYTHING,
1391         .arg3_type      = ARG_ANYTHING,
1392         .arg4_type      = ARG_ANYTHING,
1393         .arg5_type      = ARG_ANYTHING,
1394 };
1395
1396 #define BPF_IS_REDIRECT_INGRESS(flags)  ((flags) & 1)
1397
1398 static u64 bpf_clone_redirect(u64 r1, u64 ifindex, u64 flags, u64 r4, u64 r5)
1399 {
1400         struct sk_buff *skb = (struct sk_buff *) (long) r1, *skb2;
1401         struct net_device *dev;
1402
1403         dev = dev_get_by_index_rcu(dev_net(skb->dev), ifindex);
1404         if (unlikely(!dev))
1405                 return -EINVAL;
1406
1407         if (unlikely(!(dev->flags & IFF_UP)))
1408                 return -EINVAL;
1409
1410         skb2 = skb_clone(skb, GFP_ATOMIC);
1411         if (unlikely(!skb2))
1412                 return -ENOMEM;
1413
1414         if (BPF_IS_REDIRECT_INGRESS(flags))
1415                 return dev_forward_skb(dev, skb2);
1416
1417         skb2->dev = dev;
1418         return dev_queue_xmit(skb2);
1419 }
1420
1421 const struct bpf_func_proto bpf_clone_redirect_proto = {
1422         .func           = bpf_clone_redirect,
1423         .gpl_only       = false,
1424         .ret_type       = RET_INTEGER,
1425         .arg1_type      = ARG_PTR_TO_CTX,
1426         .arg2_type      = ARG_ANYTHING,
1427         .arg3_type      = ARG_ANYTHING,
1428 };
1429
1430 static u64 bpf_get_cgroup_classid(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5)
1431 {
1432         return task_get_classid((struct sk_buff *) (unsigned long) r1);
1433 }
1434
1435 static const struct bpf_func_proto bpf_get_cgroup_classid_proto = {
1436         .func           = bpf_get_cgroup_classid,
1437         .gpl_only       = false,
1438         .ret_type       = RET_INTEGER,
1439         .arg1_type      = ARG_PTR_TO_CTX,
1440 };
1441
1442 static u64 bpf_skb_vlan_push(u64 r1, u64 r2, u64 vlan_tci, u64 r4, u64 r5)
1443 {
1444         struct sk_buff *skb = (struct sk_buff *) (long) r1;
1445         __be16 vlan_proto = (__force __be16) r2;
1446
1447         if (unlikely(vlan_proto != htons(ETH_P_8021Q) &&
1448                      vlan_proto != htons(ETH_P_8021AD)))
1449                 vlan_proto = htons(ETH_P_8021Q);
1450
1451         return skb_vlan_push(skb, vlan_proto, vlan_tci);
1452 }
1453
1454 const struct bpf_func_proto bpf_skb_vlan_push_proto = {
1455         .func           = bpf_skb_vlan_push,
1456         .gpl_only       = false,
1457         .ret_type       = RET_INTEGER,
1458         .arg1_type      = ARG_PTR_TO_CTX,
1459         .arg2_type      = ARG_ANYTHING,
1460         .arg3_type      = ARG_ANYTHING,
1461 };
1462 EXPORT_SYMBOL_GPL(bpf_skb_vlan_push_proto);
1463
1464 static u64 bpf_skb_vlan_pop(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5)
1465 {
1466         struct sk_buff *skb = (struct sk_buff *) (long) r1;
1467
1468         return skb_vlan_pop(skb);
1469 }
1470
1471 const struct bpf_func_proto bpf_skb_vlan_pop_proto = {
1472         .func           = bpf_skb_vlan_pop,
1473         .gpl_only       = false,
1474         .ret_type       = RET_INTEGER,
1475         .arg1_type      = ARG_PTR_TO_CTX,
1476 };
1477 EXPORT_SYMBOL_GPL(bpf_skb_vlan_pop_proto);
1478
1479 bool bpf_helper_changes_skb_data(void *func)
1480 {
1481         if (func == bpf_skb_vlan_push)
1482                 return true;
1483         if (func == bpf_skb_vlan_pop)
1484                 return true;
1485         return false;
1486 }
1487
1488 static u64 bpf_skb_get_tunnel_key(u64 r1, u64 r2, u64 size, u64 flags, u64 r5)
1489 {
1490         struct sk_buff *skb = (struct sk_buff *) (long) r1;
1491         struct bpf_tunnel_key *to = (struct bpf_tunnel_key *) (long) r2;
1492         struct ip_tunnel_info *info = skb_tunnel_info(skb);
1493
1494         if (unlikely(size != sizeof(struct bpf_tunnel_key) || flags || !info))
1495                 return -EINVAL;
1496         if (ip_tunnel_info_af(info) != AF_INET)
1497                 return -EINVAL;
1498
1499         to->tunnel_id = be64_to_cpu(info->key.tun_id);
1500         to->remote_ipv4 = be32_to_cpu(info->key.u.ipv4.src);
1501
1502         return 0;
1503 }
1504
1505 const struct bpf_func_proto bpf_skb_get_tunnel_key_proto = {
1506         .func           = bpf_skb_get_tunnel_key,
1507         .gpl_only       = false,
1508         .ret_type       = RET_INTEGER,
1509         .arg1_type      = ARG_PTR_TO_CTX,
1510         .arg2_type      = ARG_PTR_TO_STACK,
1511         .arg3_type      = ARG_CONST_STACK_SIZE,
1512         .arg4_type      = ARG_ANYTHING,
1513 };
1514
1515 static struct metadata_dst __percpu *md_dst;
1516
1517 static u64 bpf_skb_set_tunnel_key(u64 r1, u64 r2, u64 size, u64 flags, u64 r5)
1518 {
1519         struct sk_buff *skb = (struct sk_buff *) (long) r1;
1520         struct bpf_tunnel_key *from = (struct bpf_tunnel_key *) (long) r2;
1521         struct metadata_dst *md = this_cpu_ptr(md_dst);
1522         struct ip_tunnel_info *info;
1523
1524         if (unlikely(size != sizeof(struct bpf_tunnel_key) || flags))
1525                 return -EINVAL;
1526
1527         skb_dst_drop(skb);
1528         dst_hold((struct dst_entry *) md);
1529         skb_dst_set(skb, (struct dst_entry *) md);
1530
1531         info = &md->u.tun_info;
1532         info->mode = IP_TUNNEL_INFO_TX;
1533         info->key.tun_flags = TUNNEL_KEY;
1534         info->key.tun_id = cpu_to_be64(from->tunnel_id);
1535         info->key.u.ipv4.dst = cpu_to_be32(from->remote_ipv4);
1536
1537         return 0;
1538 }
1539
1540 const struct bpf_func_proto bpf_skb_set_tunnel_key_proto = {
1541         .func           = bpf_skb_set_tunnel_key,
1542         .gpl_only       = false,
1543         .ret_type       = RET_INTEGER,
1544         .arg1_type      = ARG_PTR_TO_CTX,
1545         .arg2_type      = ARG_PTR_TO_STACK,
1546         .arg3_type      = ARG_CONST_STACK_SIZE,
1547         .arg4_type      = ARG_ANYTHING,
1548 };
1549
1550 static const struct bpf_func_proto *bpf_get_skb_set_tunnel_key_proto(void)
1551 {
1552         if (!md_dst) {
1553                 /* race is not possible, since it's called from
1554                  * verifier that is holding verifier mutex
1555                  */
1556                 md_dst = metadata_dst_alloc_percpu(0, GFP_KERNEL);
1557                 if (!md_dst)
1558                         return NULL;
1559         }
1560         return &bpf_skb_set_tunnel_key_proto;
1561 }
1562
1563 static const struct bpf_func_proto *
1564 sk_filter_func_proto(enum bpf_func_id func_id)
1565 {
1566         switch (func_id) {
1567         case BPF_FUNC_map_lookup_elem:
1568                 return &bpf_map_lookup_elem_proto;
1569         case BPF_FUNC_map_update_elem:
1570                 return &bpf_map_update_elem_proto;
1571         case BPF_FUNC_map_delete_elem:
1572                 return &bpf_map_delete_elem_proto;
1573         case BPF_FUNC_get_prandom_u32:
1574                 return &bpf_get_prandom_u32_proto;
1575         case BPF_FUNC_get_smp_processor_id:
1576                 return &bpf_get_smp_processor_id_proto;
1577         case BPF_FUNC_tail_call:
1578                 return &bpf_tail_call_proto;
1579         case BPF_FUNC_ktime_get_ns:
1580                 return &bpf_ktime_get_ns_proto;
1581         case BPF_FUNC_trace_printk:
1582                 return bpf_get_trace_printk_proto();
1583         default:
1584                 return NULL;
1585         }
1586 }
1587
1588 static const struct bpf_func_proto *
1589 tc_cls_act_func_proto(enum bpf_func_id func_id)
1590 {
1591         switch (func_id) {
1592         case BPF_FUNC_skb_store_bytes:
1593                 return &bpf_skb_store_bytes_proto;
1594         case BPF_FUNC_l3_csum_replace:
1595                 return &bpf_l3_csum_replace_proto;
1596         case BPF_FUNC_l4_csum_replace:
1597                 return &bpf_l4_csum_replace_proto;
1598         case BPF_FUNC_clone_redirect:
1599                 return &bpf_clone_redirect_proto;
1600         case BPF_FUNC_get_cgroup_classid:
1601                 return &bpf_get_cgroup_classid_proto;
1602         case BPF_FUNC_skb_vlan_push:
1603                 return &bpf_skb_vlan_push_proto;
1604         case BPF_FUNC_skb_vlan_pop:
1605                 return &bpf_skb_vlan_pop_proto;
1606         case BPF_FUNC_skb_get_tunnel_key:
1607                 return &bpf_skb_get_tunnel_key_proto;
1608         case BPF_FUNC_skb_set_tunnel_key:
1609                 return bpf_get_skb_set_tunnel_key_proto();
1610         default:
1611                 return sk_filter_func_proto(func_id);
1612         }
1613 }
1614
1615 static bool __is_valid_access(int off, int size, enum bpf_access_type type)
1616 {
1617         /* check bounds */
1618         if (off < 0 || off >= sizeof(struct __sk_buff))
1619                 return false;
1620
1621         /* disallow misaligned access */
1622         if (off % size != 0)
1623                 return false;
1624
1625         /* all __sk_buff fields are __u32 */
1626         if (size != 4)
1627                 return false;
1628
1629         return true;
1630 }
1631
1632 static bool sk_filter_is_valid_access(int off, int size,
1633                                       enum bpf_access_type type)
1634 {
1635         if (type == BPF_WRITE) {
1636                 switch (off) {
1637                 case offsetof(struct __sk_buff, cb[0]) ...
1638                         offsetof(struct __sk_buff, cb[4]):
1639                         break;
1640                 default:
1641                         return false;
1642                 }
1643         }
1644
1645         return __is_valid_access(off, size, type);
1646 }
1647
1648 static bool tc_cls_act_is_valid_access(int off, int size,
1649                                        enum bpf_access_type type)
1650 {
1651         if (type == BPF_WRITE) {
1652                 switch (off) {
1653                 case offsetof(struct __sk_buff, mark):
1654                 case offsetof(struct __sk_buff, tc_index):
1655                 case offsetof(struct __sk_buff, cb[0]) ...
1656                         offsetof(struct __sk_buff, cb[4]):
1657                         break;
1658                 default:
1659                         return false;
1660                 }
1661         }
1662         return __is_valid_access(off, size, type);
1663 }
1664
1665 static u32 bpf_net_convert_ctx_access(enum bpf_access_type type, int dst_reg,
1666                                       int src_reg, int ctx_off,
1667                                       struct bpf_insn *insn_buf)
1668 {
1669         struct bpf_insn *insn = insn_buf;
1670
1671         switch (ctx_off) {
1672         case offsetof(struct __sk_buff, len):
1673                 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, len) != 4);
1674
1675                 *insn++ = BPF_LDX_MEM(BPF_W, dst_reg, src_reg,
1676                                       offsetof(struct sk_buff, len));
1677                 break;
1678
1679         case offsetof(struct __sk_buff, protocol):
1680                 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, protocol) != 2);
1681
1682                 *insn++ = BPF_LDX_MEM(BPF_H, dst_reg, src_reg,
1683                                       offsetof(struct sk_buff, protocol));
1684                 break;
1685
1686         case offsetof(struct __sk_buff, vlan_proto):
1687                 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, vlan_proto) != 2);
1688
1689                 *insn++ = BPF_LDX_MEM(BPF_H, dst_reg, src_reg,
1690                                       offsetof(struct sk_buff, vlan_proto));
1691                 break;
1692
1693         case offsetof(struct __sk_buff, priority):
1694                 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, priority) != 4);
1695
1696                 *insn++ = BPF_LDX_MEM(BPF_W, dst_reg, src_reg,
1697                                       offsetof(struct sk_buff, priority));
1698                 break;
1699
1700         case offsetof(struct __sk_buff, ingress_ifindex):
1701                 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, skb_iif) != 4);
1702
1703                 *insn++ = BPF_LDX_MEM(BPF_W, dst_reg, src_reg,
1704                                       offsetof(struct sk_buff, skb_iif));
1705                 break;
1706
1707         case offsetof(struct __sk_buff, ifindex):
1708                 BUILD_BUG_ON(FIELD_SIZEOF(struct net_device, ifindex) != 4);
1709
1710                 *insn++ = BPF_LDX_MEM(bytes_to_bpf_size(FIELD_SIZEOF(struct sk_buff, dev)),
1711                                       dst_reg, src_reg,
1712                                       offsetof(struct sk_buff, dev));
1713                 *insn++ = BPF_JMP_IMM(BPF_JEQ, dst_reg, 0, 1);
1714                 *insn++ = BPF_LDX_MEM(BPF_W, dst_reg, dst_reg,
1715                                       offsetof(struct net_device, ifindex));
1716                 break;
1717
1718         case offsetof(struct __sk_buff, hash):
1719                 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, hash) != 4);
1720
1721                 *insn++ = BPF_LDX_MEM(BPF_W, dst_reg, src_reg,
1722                                       offsetof(struct sk_buff, hash));
1723                 break;
1724
1725         case offsetof(struct __sk_buff, mark):
1726                 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, mark) != 4);
1727
1728                 if (type == BPF_WRITE)
1729                         *insn++ = BPF_STX_MEM(BPF_W, dst_reg, src_reg,
1730                                               offsetof(struct sk_buff, mark));
1731                 else
1732                         *insn++ = BPF_LDX_MEM(BPF_W, dst_reg, src_reg,
1733                                               offsetof(struct sk_buff, mark));
1734                 break;
1735
1736         case offsetof(struct __sk_buff, pkt_type):
1737                 return convert_skb_access(SKF_AD_PKTTYPE, dst_reg, src_reg, insn);
1738
1739         case offsetof(struct __sk_buff, queue_mapping):
1740                 return convert_skb_access(SKF_AD_QUEUE, dst_reg, src_reg, insn);
1741
1742         case offsetof(struct __sk_buff, vlan_present):
1743                 return convert_skb_access(SKF_AD_VLAN_TAG_PRESENT,
1744                                           dst_reg, src_reg, insn);
1745
1746         case offsetof(struct __sk_buff, vlan_tci):
1747                 return convert_skb_access(SKF_AD_VLAN_TAG,
1748                                           dst_reg, src_reg, insn);
1749
1750         case offsetof(struct __sk_buff, cb[0]) ...
1751                 offsetof(struct __sk_buff, cb[4]):
1752                 BUILD_BUG_ON(FIELD_SIZEOF(struct qdisc_skb_cb, data) < 20);
1753
1754                 ctx_off -= offsetof(struct __sk_buff, cb[0]);
1755                 ctx_off += offsetof(struct sk_buff, cb);
1756                 ctx_off += offsetof(struct qdisc_skb_cb, data);
1757                 if (type == BPF_WRITE)
1758                         *insn++ = BPF_STX_MEM(BPF_W, dst_reg, src_reg, ctx_off);
1759                 else
1760                         *insn++ = BPF_LDX_MEM(BPF_W, dst_reg, src_reg, ctx_off);
1761                 break;
1762
1763         case offsetof(struct __sk_buff, tc_index):
1764 #ifdef CONFIG_NET_SCHED
1765                 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, tc_index) != 2);
1766
1767                 if (type == BPF_WRITE)
1768                         *insn++ = BPF_STX_MEM(BPF_H, dst_reg, src_reg,
1769                                               offsetof(struct sk_buff, tc_index));
1770                 else
1771                         *insn++ = BPF_LDX_MEM(BPF_H, dst_reg, src_reg,
1772                                               offsetof(struct sk_buff, tc_index));
1773                 break;
1774 #else
1775                 if (type == BPF_WRITE)
1776                         *insn++ = BPF_MOV64_REG(dst_reg, dst_reg);
1777                 else
1778                         *insn++ = BPF_MOV64_IMM(dst_reg, 0);
1779                 break;
1780 #endif
1781         }
1782
1783         return insn - insn_buf;
1784 }
1785
1786 static const struct bpf_verifier_ops sk_filter_ops = {
1787         .get_func_proto = sk_filter_func_proto,
1788         .is_valid_access = sk_filter_is_valid_access,
1789         .convert_ctx_access = bpf_net_convert_ctx_access,
1790 };
1791
1792 static const struct bpf_verifier_ops tc_cls_act_ops = {
1793         .get_func_proto = tc_cls_act_func_proto,
1794         .is_valid_access = tc_cls_act_is_valid_access,
1795         .convert_ctx_access = bpf_net_convert_ctx_access,
1796 };
1797
1798 static struct bpf_prog_type_list sk_filter_type __read_mostly = {
1799         .ops = &sk_filter_ops,
1800         .type = BPF_PROG_TYPE_SOCKET_FILTER,
1801 };
1802
1803 static struct bpf_prog_type_list sched_cls_type __read_mostly = {
1804         .ops = &tc_cls_act_ops,
1805         .type = BPF_PROG_TYPE_SCHED_CLS,
1806 };
1807
1808 static struct bpf_prog_type_list sched_act_type __read_mostly = {
1809         .ops = &tc_cls_act_ops,
1810         .type = BPF_PROG_TYPE_SCHED_ACT,
1811 };
1812
1813 static int __init register_sk_filter_ops(void)
1814 {
1815         bpf_register_prog_type(&sk_filter_type);
1816         bpf_register_prog_type(&sched_cls_type);
1817         bpf_register_prog_type(&sched_act_type);
1818
1819         return 0;
1820 }
1821 late_initcall(register_sk_filter_ops);
1822
1823 int sk_detach_filter(struct sock *sk)
1824 {
1825         int ret = -ENOENT;
1826         struct sk_filter *filter;
1827
1828         if (sock_flag(sk, SOCK_FILTER_LOCKED))
1829                 return -EPERM;
1830
1831         filter = rcu_dereference_protected(sk->sk_filter,
1832                                            sock_owned_by_user(sk));
1833         if (filter) {
1834                 RCU_INIT_POINTER(sk->sk_filter, NULL);
1835                 sk_filter_uncharge(sk, filter);
1836                 ret = 0;
1837         }
1838
1839         return ret;
1840 }
1841 EXPORT_SYMBOL_GPL(sk_detach_filter);
1842
1843 int sk_get_filter(struct sock *sk, struct sock_filter __user *ubuf,
1844                   unsigned int len)
1845 {
1846         struct sock_fprog_kern *fprog;
1847         struct sk_filter *filter;
1848         int ret = 0;
1849
1850         lock_sock(sk);
1851         filter = rcu_dereference_protected(sk->sk_filter,
1852                                            sock_owned_by_user(sk));
1853         if (!filter)
1854                 goto out;
1855
1856         /* We're copying the filter that has been originally attached,
1857          * so no conversion/decode needed anymore.
1858          */
1859         fprog = filter->prog->orig_prog;
1860
1861         ret = fprog->len;
1862         if (!len)
1863                 /* User space only enquires number of filter blocks. */
1864                 goto out;
1865
1866         ret = -EINVAL;
1867         if (len < fprog->len)
1868                 goto out;
1869
1870         ret = -EFAULT;
1871         if (copy_to_user(ubuf, fprog->filter, bpf_classic_proglen(fprog)))
1872                 goto out;
1873
1874         /* Instead of bytes, the API requests to return the number
1875          * of filter blocks.
1876          */
1877         ret = fprog->len;
1878 out:
1879         release_sock(sk);
1880         return ret;
1881 }