blob: fa5b7d0f77acb1f8fbc2d3face7bd6a700394daf [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Linux Socket Filter - Kernel level socket filtering
3 *
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +01004 * Based on the design of the Berkeley Packet Filter. The new
5 * internal format has been designed by PLUMgrid:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +01007 * Copyright (c) 2011 - 2014 PLUMgrid, http://plumgrid.com
8 *
9 * Authors:
10 *
11 * Jay Schulist <jschlst@samba.org>
12 * Alexei Starovoitov <ast@plumgrid.com>
13 * Daniel Borkmann <dborkman@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version
18 * 2 of the License, or (at your option) any later version.
19 *
20 * Andi Kleen - Fix a few bad bugs and races.
Alexei Starovoitov4df95ff2014-07-30 20:34:14 -070021 * Kris Katterjohn - Added many additional checks in bpf_check_classic()
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 */
23
24#include <linux/module.h>
25#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/mm.h>
27#include <linux/fcntl.h>
28#include <linux/socket.h>
29#include <linux/in.h>
30#include <linux/inet.h>
31#include <linux/netdevice.h>
32#include <linux/if_packet.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <net/ip.h>
35#include <net/protocol.h>
Patrick McHardy4738c1d2008-04-10 02:02:28 -070036#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/skbuff.h>
38#include <net/sock.h>
39#include <linux/errno.h>
40#include <linux/timer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <asm/uaccess.h>
Dmitry Mishin40daafc2006-04-18 14:50:10 -070042#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/filter.h>
David S. Miller86e4ca62011-05-26 15:00:31 -040044#include <linux/ratelimit.h>
Will Drewry46b325c2012-04-12 16:47:52 -050045#include <linux/seccomp.h>
Eric Dumazetf3335032012-10-27 02:26:17 +000046#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Linus Torvalds1da177e2005-04-16 15:20:36 -070048/**
Stephen Hemminger43db6d62008-04-10 01:43:09 -070049 * sk_filter - run a packet through a socket filter
50 * @sk: sock associated with &sk_buff
51 * @skb: buffer to filter
Stephen Hemminger43db6d62008-04-10 01:43:09 -070052 *
53 * Run the filter code and then cut skb->data to correct size returned by
54 * sk_run_filter. If pkt_len is 0 we toss packet. If skb->len is smaller
55 * than pkt_len we keep whole skb->data. This is the socket level
56 * wrapper to sk_run_filter. It returns 0 if the packet should
57 * be accepted or -EPERM if the packet should be tossed.
58 *
59 */
60int sk_filter(struct sock *sk, struct sk_buff *skb)
61{
62 int err;
63 struct sk_filter *filter;
64
Mel Gormanc93bdd02012-07-31 16:44:19 -070065 /*
66 * If the skb was allocated from pfmemalloc reserves, only
67 * allow SOCK_MEMALLOC sockets to use it as this socket is
68 * helping free memory
69 */
70 if (skb_pfmemalloc(skb) && !sock_flag(sk, SOCK_MEMALLOC))
71 return -ENOMEM;
72
Stephen Hemminger43db6d62008-04-10 01:43:09 -070073 err = security_sock_rcv_skb(sk, skb);
74 if (err)
75 return err;
76
Eric Dumazet80f8f102011-01-18 07:46:52 +000077 rcu_read_lock();
78 filter = rcu_dereference(sk->sk_filter);
Stephen Hemminger43db6d62008-04-10 01:43:09 -070079 if (filter) {
Eric Dumazet0a148422011-04-20 09:27:32 +000080 unsigned int pkt_len = SK_RUN_FILTER(filter, skb);
Eric Dumazet0d7da9d2010-10-25 03:47:05 +000081
Stephen Hemminger43db6d62008-04-10 01:43:09 -070082 err = pkt_len ? pskb_trim(skb, pkt_len) : -EPERM;
83 }
Eric Dumazet80f8f102011-01-18 07:46:52 +000084 rcu_read_unlock();
Stephen Hemminger43db6d62008-04-10 01:43:09 -070085
86 return err;
87}
88EXPORT_SYMBOL(sk_filter);
89
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +010090/* Helper to find the offset of pkt_type in sk_buff structure. We want
91 * to make sure its still a 3bit field starting at a byte boundary;
92 * taken from arch/x86/net/bpf_jit_comp.c.
93 */
Alexei Starovoitov0dcceab2014-06-05 14:39:36 -070094#ifdef __BIG_ENDIAN_BITFIELD
95#define PKT_TYPE_MAX (7 << 5)
96#else
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +010097#define PKT_TYPE_MAX 7
Alexei Starovoitov0dcceab2014-06-05 14:39:36 -070098#endif
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +010099static unsigned int pkt_type_offset(void)
100{
101 struct sk_buff skb_probe = { .pkt_type = ~0, };
102 u8 *ct = (u8 *) &skb_probe;
103 unsigned int off;
104
105 for (off = 0; off < sizeof(struct sk_buff); off++) {
106 if (ct[off] == PKT_TYPE_MAX)
107 return off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 }
109
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100110 pr_err_once("Please fix %s, as pkt_type couldn't be found!\n", __func__);
111 return -1;
112}
113
Daniel Borkmann30743832014-05-01 18:34:19 +0200114static u64 __skb_get_pay_offset(u64 ctx, u64 a, u64 x, u64 r4, u64 r5)
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100115{
Alexander Duyck56193d12014-09-05 19:20:26 -0400116 return skb_get_poff((struct sk_buff *)(unsigned long) ctx);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100117}
118
Daniel Borkmann30743832014-05-01 18:34:19 +0200119static u64 __skb_get_nlattr(u64 ctx, u64 a, u64 x, u64 r4, u64 r5)
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100120{
Daniel Borkmanneb9672f2014-05-01 18:34:20 +0200121 struct sk_buff *skb = (struct sk_buff *)(unsigned long) ctx;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100122 struct nlattr *nla;
123
124 if (skb_is_nonlinear(skb))
125 return 0;
126
Mathias Krause05ab8f22014-04-13 18:23:33 +0200127 if (skb->len < sizeof(struct nlattr))
128 return 0;
129
Daniel Borkmann30743832014-05-01 18:34:19 +0200130 if (a > skb->len - sizeof(struct nlattr))
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100131 return 0;
132
Daniel Borkmann30743832014-05-01 18:34:19 +0200133 nla = nla_find((struct nlattr *) &skb->data[a], skb->len - a, x);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100134 if (nla)
135 return (void *) nla - (void *) skb->data;
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 return 0;
138}
139
Daniel Borkmann30743832014-05-01 18:34:19 +0200140static u64 __skb_get_nlattr_nest(u64 ctx, u64 a, u64 x, u64 r4, u64 r5)
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100141{
Daniel Borkmanneb9672f2014-05-01 18:34:20 +0200142 struct sk_buff *skb = (struct sk_buff *)(unsigned long) ctx;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100143 struct nlattr *nla;
144
145 if (skb_is_nonlinear(skb))
146 return 0;
147
Mathias Krause05ab8f22014-04-13 18:23:33 +0200148 if (skb->len < sizeof(struct nlattr))
149 return 0;
150
Daniel Borkmann30743832014-05-01 18:34:19 +0200151 if (a > skb->len - sizeof(struct nlattr))
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100152 return 0;
153
Daniel Borkmann30743832014-05-01 18:34:19 +0200154 nla = (struct nlattr *) &skb->data[a];
155 if (nla->nla_len > skb->len - a)
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100156 return 0;
157
Daniel Borkmann30743832014-05-01 18:34:19 +0200158 nla = nla_find_nested(nla, x);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100159 if (nla)
160 return (void *) nla - (void *) skb->data;
161
162 return 0;
163}
164
Daniel Borkmann30743832014-05-01 18:34:19 +0200165static u64 __get_raw_cpu_id(u64 ctx, u64 a, u64 x, u64 r4, u64 r5)
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100166{
167 return raw_smp_processor_id();
168}
169
Chema Gonzalez4cd36752014-04-21 09:21:24 -0700170/* note that this only generates 32-bit random numbers */
Daniel Borkmann30743832014-05-01 18:34:19 +0200171static u64 __get_random_u32(u64 ctx, u64 a, u64 x, u64 r4, u64 r5)
Chema Gonzalez4cd36752014-04-21 09:21:24 -0700172{
Daniel Borkmanneb9672f2014-05-01 18:34:20 +0200173 return prandom_u32();
Chema Gonzalez4cd36752014-04-21 09:21:24 -0700174}
175
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100176static bool convert_bpf_extensions(struct sock_filter *fp,
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700177 struct bpf_insn **insnp)
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100178{
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700179 struct bpf_insn *insn = *insnp;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100180
181 switch (fp->k) {
182 case SKF_AD_OFF + SKF_AD_PROTOCOL:
183 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, protocol) != 2);
184
Alexei Starovoitove430f342014-06-06 14:46:06 -0700185 /* A = *(u16 *) (CTX + offsetof(protocol)) */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200186 *insn++ = BPF_LDX_MEM(BPF_H, BPF_REG_A, BPF_REG_CTX,
187 offsetof(struct sk_buff, protocol));
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100188 /* A = ntohs(A) [emitting a nop or swap16] */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200189 *insn = BPF_ENDIAN(BPF_FROM_BE, BPF_REG_A, 16);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100190 break;
191
192 case SKF_AD_OFF + SKF_AD_PKTTYPE:
Alexei Starovoitov9739eef2014-05-08 14:10:51 -0700193 *insn = BPF_LDX_MEM(BPF_B, BPF_REG_A, BPF_REG_CTX,
194 pkt_type_offset());
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100195 if (insn->off < 0)
196 return false;
197 insn++;
Alexei Starovoitov9739eef2014-05-08 14:10:51 -0700198 *insn = BPF_ALU32_IMM(BPF_AND, BPF_REG_A, PKT_TYPE_MAX);
Alexei Starovoitov0dcceab2014-06-05 14:39:36 -0700199#ifdef __BIG_ENDIAN_BITFIELD
200 insn++;
David S. Millerf666f872014-06-05 16:22:02 -0700201 *insn = BPF_ALU32_IMM(BPF_RSH, BPF_REG_A, 5);
Alexei Starovoitov0dcceab2014-06-05 14:39:36 -0700202#endif
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100203 break;
204
205 case SKF_AD_OFF + SKF_AD_IFINDEX:
206 case SKF_AD_OFF + SKF_AD_HATYPE:
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100207 BUILD_BUG_ON(FIELD_SIZEOF(struct net_device, ifindex) != 4);
208 BUILD_BUG_ON(FIELD_SIZEOF(struct net_device, type) != 2);
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200209 BUILD_BUG_ON(bytes_to_bpf_size(FIELD_SIZEOF(struct sk_buff, dev)) < 0);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100210
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200211 *insn++ = BPF_LDX_MEM(bytes_to_bpf_size(FIELD_SIZEOF(struct sk_buff, dev)),
212 BPF_REG_TMP, BPF_REG_CTX,
213 offsetof(struct sk_buff, dev));
214 /* if (tmp != 0) goto pc + 1 */
215 *insn++ = BPF_JMP_IMM(BPF_JNE, BPF_REG_TMP, 0, 1);
216 *insn++ = BPF_EXIT_INSN();
217 if (fp->k == SKF_AD_OFF + SKF_AD_IFINDEX)
218 *insn = BPF_LDX_MEM(BPF_W, BPF_REG_A, BPF_REG_TMP,
219 offsetof(struct net_device, ifindex));
220 else
221 *insn = BPF_LDX_MEM(BPF_H, BPF_REG_A, BPF_REG_TMP,
222 offsetof(struct net_device, type));
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100223 break;
224
225 case SKF_AD_OFF + SKF_AD_MARK:
226 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, mark) != 4);
227
Alexei Starovoitov9739eef2014-05-08 14:10:51 -0700228 *insn = BPF_LDX_MEM(BPF_W, BPF_REG_A, BPF_REG_CTX,
229 offsetof(struct sk_buff, mark));
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100230 break;
231
232 case SKF_AD_OFF + SKF_AD_RXHASH:
233 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, hash) != 4);
234
Alexei Starovoitov9739eef2014-05-08 14:10:51 -0700235 *insn = BPF_LDX_MEM(BPF_W, BPF_REG_A, BPF_REG_CTX,
236 offsetof(struct sk_buff, hash));
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100237 break;
238
239 case SKF_AD_OFF + SKF_AD_QUEUE:
240 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, queue_mapping) != 2);
241
Alexei Starovoitov9739eef2014-05-08 14:10:51 -0700242 *insn = BPF_LDX_MEM(BPF_H, BPF_REG_A, BPF_REG_CTX,
243 offsetof(struct sk_buff, queue_mapping));
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100244 break;
245
246 case SKF_AD_OFF + SKF_AD_VLAN_TAG:
247 case SKF_AD_OFF + SKF_AD_VLAN_TAG_PRESENT:
248 BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, vlan_tci) != 2);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100249 BUILD_BUG_ON(VLAN_TAG_PRESENT != 0x1000);
250
Alexei Starovoitove430f342014-06-06 14:46:06 -0700251 /* A = *(u16 *) (CTX + offsetof(vlan_tci)) */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200252 *insn++ = BPF_LDX_MEM(BPF_H, BPF_REG_A, BPF_REG_CTX,
253 offsetof(struct sk_buff, vlan_tci));
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100254 if (fp->k == SKF_AD_OFF + SKF_AD_VLAN_TAG) {
Alexei Starovoitov9739eef2014-05-08 14:10:51 -0700255 *insn = BPF_ALU32_IMM(BPF_AND, BPF_REG_A,
256 ~VLAN_TAG_PRESENT);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100257 } else {
Alexei Starovoitov9739eef2014-05-08 14:10:51 -0700258 /* A >>= 12 */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200259 *insn++ = BPF_ALU32_IMM(BPF_RSH, BPF_REG_A, 12);
Alexei Starovoitov9739eef2014-05-08 14:10:51 -0700260 /* A &= 1 */
261 *insn = BPF_ALU32_IMM(BPF_AND, BPF_REG_A, 1);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100262 }
263 break;
264
265 case SKF_AD_OFF + SKF_AD_PAY_OFFSET:
266 case SKF_AD_OFF + SKF_AD_NLATTR:
267 case SKF_AD_OFF + SKF_AD_NLATTR_NEST:
268 case SKF_AD_OFF + SKF_AD_CPU:
Chema Gonzalez4cd36752014-04-21 09:21:24 -0700269 case SKF_AD_OFF + SKF_AD_RANDOM:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700270 /* arg1 = CTX */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200271 *insn++ = BPF_MOV64_REG(BPF_REG_ARG1, BPF_REG_CTX);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100272 /* arg2 = A */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200273 *insn++ = BPF_MOV64_REG(BPF_REG_ARG2, BPF_REG_A);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100274 /* arg3 = X */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200275 *insn++ = BPF_MOV64_REG(BPF_REG_ARG3, BPF_REG_X);
Alexei Starovoitove430f342014-06-06 14:46:06 -0700276 /* Emit call(arg1=CTX, arg2=A, arg3=X) */
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100277 switch (fp->k) {
278 case SKF_AD_OFF + SKF_AD_PAY_OFFSET:
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200279 *insn = BPF_EMIT_CALL(__skb_get_pay_offset);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100280 break;
281 case SKF_AD_OFF + SKF_AD_NLATTR:
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200282 *insn = BPF_EMIT_CALL(__skb_get_nlattr);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100283 break;
284 case SKF_AD_OFF + SKF_AD_NLATTR_NEST:
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200285 *insn = BPF_EMIT_CALL(__skb_get_nlattr_nest);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100286 break;
287 case SKF_AD_OFF + SKF_AD_CPU:
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200288 *insn = BPF_EMIT_CALL(__get_raw_cpu_id);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100289 break;
Chema Gonzalez4cd36752014-04-21 09:21:24 -0700290 case SKF_AD_OFF + SKF_AD_RANDOM:
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200291 *insn = BPF_EMIT_CALL(__get_random_u32);
Chema Gonzalez4cd36752014-04-21 09:21:24 -0700292 break;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100293 }
294 break;
295
296 case SKF_AD_OFF + SKF_AD_ALU_XOR_X:
Alexei Starovoitov9739eef2014-05-08 14:10:51 -0700297 /* A ^= X */
298 *insn = BPF_ALU32_REG(BPF_XOR, BPF_REG_A, BPF_REG_X);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100299 break;
300
301 default:
302 /* This is just a dummy call to avoid letting the compiler
303 * evict __bpf_call_base() as an optimization. Placed here
304 * where no-one bothers.
305 */
306 BUG_ON(__bpf_call_base(0, 0, 0, 0, 0) != 0);
307 return false;
308 }
309
310 *insnp = insn;
311 return true;
312}
313
314/**
Alexei Starovoitov8fb575c2014-07-30 20:34:15 -0700315 * bpf_convert_filter - convert filter program
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100316 * @prog: the user passed filter program
317 * @len: the length of the user passed filter program
318 * @new_prog: buffer where converted program will be stored
319 * @new_len: pointer to store length of converted program
320 *
321 * Remap 'sock_filter' style BPF instruction set to 'sock_filter_ext' style.
322 * Conversion workflow:
323 *
324 * 1) First pass for calculating the new program length:
Alexei Starovoitov8fb575c2014-07-30 20:34:15 -0700325 * bpf_convert_filter(old_prog, old_len, NULL, &new_len)
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100326 *
327 * 2) 2nd pass to remap in two passes: 1st pass finds new
328 * jump offsets, 2nd pass remapping:
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700329 * new_prog = kmalloc(sizeof(struct bpf_insn) * new_len);
Alexei Starovoitov8fb575c2014-07-30 20:34:15 -0700330 * bpf_convert_filter(old_prog, old_len, new_prog, &new_len);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100331 *
332 * User BPF's register A is mapped to our BPF register 6, user BPF
333 * register X is mapped to BPF register 7; frame pointer is always
334 * register 10; Context 'void *ctx' is stored in register 1, that is,
335 * for socket filters: ctx == 'struct sk_buff *', for seccomp:
336 * ctx == 'struct seccomp_data *'.
337 */
Alexei Starovoitov8fb575c2014-07-30 20:34:15 -0700338int bpf_convert_filter(struct sock_filter *prog, int len,
339 struct bpf_insn *new_prog, int *new_len)
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100340{
341 int new_flen = 0, pass = 0, target, i;
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700342 struct bpf_insn *new_insn;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100343 struct sock_filter *fp;
344 int *addrs = NULL;
345 u8 bpf_src;
346
347 BUILD_BUG_ON(BPF_MEMWORDS * sizeof(u32) > MAX_BPF_STACK);
Daniel Borkmann30743832014-05-01 18:34:19 +0200348 BUILD_BUG_ON(BPF_REG_FP + 1 != MAX_BPF_REG);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100349
Kees Cook6f9a0932014-06-18 15:34:57 -0700350 if (len <= 0 || len > BPF_MAXINSNS)
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100351 return -EINVAL;
352
353 if (new_prog) {
Tobias Klauser99e72a02014-06-24 15:33:22 +0200354 addrs = kcalloc(len, sizeof(*addrs), GFP_KERNEL);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100355 if (!addrs)
356 return -ENOMEM;
357 }
358
359do_pass:
360 new_insn = new_prog;
361 fp = prog;
362
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200363 if (new_insn)
364 *new_insn = BPF_MOV64_REG(BPF_REG_CTX, BPF_REG_ARG1);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100365 new_insn++;
366
367 for (i = 0; i < len; fp++, i++) {
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700368 struct bpf_insn tmp_insns[6] = { };
369 struct bpf_insn *insn = tmp_insns;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100370
371 if (addrs)
372 addrs[i] = new_insn - new_prog;
373
374 switch (fp->code) {
375 /* All arithmetic insns and skb loads map as-is. */
376 case BPF_ALU | BPF_ADD | BPF_X:
377 case BPF_ALU | BPF_ADD | BPF_K:
378 case BPF_ALU | BPF_SUB | BPF_X:
379 case BPF_ALU | BPF_SUB | BPF_K:
380 case BPF_ALU | BPF_AND | BPF_X:
381 case BPF_ALU | BPF_AND | BPF_K:
382 case BPF_ALU | BPF_OR | BPF_X:
383 case BPF_ALU | BPF_OR | BPF_K:
384 case BPF_ALU | BPF_LSH | BPF_X:
385 case BPF_ALU | BPF_LSH | BPF_K:
386 case BPF_ALU | BPF_RSH | BPF_X:
387 case BPF_ALU | BPF_RSH | BPF_K:
388 case BPF_ALU | BPF_XOR | BPF_X:
389 case BPF_ALU | BPF_XOR | BPF_K:
390 case BPF_ALU | BPF_MUL | BPF_X:
391 case BPF_ALU | BPF_MUL | BPF_K:
392 case BPF_ALU | BPF_DIV | BPF_X:
393 case BPF_ALU | BPF_DIV | BPF_K:
394 case BPF_ALU | BPF_MOD | BPF_X:
395 case BPF_ALU | BPF_MOD | BPF_K:
396 case BPF_ALU | BPF_NEG:
397 case BPF_LD | BPF_ABS | BPF_W:
398 case BPF_LD | BPF_ABS | BPF_H:
399 case BPF_LD | BPF_ABS | BPF_B:
400 case BPF_LD | BPF_IND | BPF_W:
401 case BPF_LD | BPF_IND | BPF_H:
402 case BPF_LD | BPF_IND | BPF_B:
403 /* Check for overloaded BPF extension and
404 * directly convert it if found, otherwise
405 * just move on with mapping.
406 */
407 if (BPF_CLASS(fp->code) == BPF_LD &&
408 BPF_MODE(fp->code) == BPF_ABS &&
409 convert_bpf_extensions(fp, &insn))
410 break;
411
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200412 *insn = BPF_RAW_INSN(fp->code, BPF_REG_A, BPF_REG_X, 0, fp->k);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100413 break;
414
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200415 /* Jump transformation cannot use BPF block macros
416 * everywhere as offset calculation and target updates
417 * require a bit more work than the rest, i.e. jump
418 * opcodes map as-is, but offsets need adjustment.
419 */
420
421#define BPF_EMIT_JMP \
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100422 do { \
423 if (target >= len || target < 0) \
424 goto err; \
425 insn->off = addrs ? addrs[target] - addrs[i] - 1 : 0; \
426 /* Adjust pc relative offset for 2nd or 3rd insn. */ \
427 insn->off -= insn - tmp_insns; \
428 } while (0)
429
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200430 case BPF_JMP | BPF_JA:
431 target = i + fp->k + 1;
432 insn->code = fp->code;
433 BPF_EMIT_JMP;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100434 break;
435
436 case BPF_JMP | BPF_JEQ | BPF_K:
437 case BPF_JMP | BPF_JEQ | BPF_X:
438 case BPF_JMP | BPF_JSET | BPF_K:
439 case BPF_JMP | BPF_JSET | BPF_X:
440 case BPF_JMP | BPF_JGT | BPF_K:
441 case BPF_JMP | BPF_JGT | BPF_X:
442 case BPF_JMP | BPF_JGE | BPF_K:
443 case BPF_JMP | BPF_JGE | BPF_X:
444 if (BPF_SRC(fp->code) == BPF_K && (int) fp->k < 0) {
445 /* BPF immediates are signed, zero extend
446 * immediate into tmp register and use it
447 * in compare insn.
448 */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200449 *insn++ = BPF_MOV32_IMM(BPF_REG_TMP, fp->k);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100450
Alexei Starovoitove430f342014-06-06 14:46:06 -0700451 insn->dst_reg = BPF_REG_A;
452 insn->src_reg = BPF_REG_TMP;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100453 bpf_src = BPF_X;
454 } else {
Alexei Starovoitove430f342014-06-06 14:46:06 -0700455 insn->dst_reg = BPF_REG_A;
456 insn->src_reg = BPF_REG_X;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100457 insn->imm = fp->k;
458 bpf_src = BPF_SRC(fp->code);
459 }
460
461 /* Common case where 'jump_false' is next insn. */
462 if (fp->jf == 0) {
463 insn->code = BPF_JMP | BPF_OP(fp->code) | bpf_src;
464 target = i + fp->jt + 1;
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200465 BPF_EMIT_JMP;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100466 break;
467 }
468
469 /* Convert JEQ into JNE when 'jump_true' is next insn. */
470 if (fp->jt == 0 && BPF_OP(fp->code) == BPF_JEQ) {
471 insn->code = BPF_JMP | BPF_JNE | bpf_src;
472 target = i + fp->jf + 1;
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200473 BPF_EMIT_JMP;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100474 break;
475 }
476
477 /* Other jumps are mapped into two insns: Jxx and JA. */
478 target = i + fp->jt + 1;
479 insn->code = BPF_JMP | BPF_OP(fp->code) | bpf_src;
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200480 BPF_EMIT_JMP;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100481 insn++;
482
483 insn->code = BPF_JMP | BPF_JA;
484 target = i + fp->jf + 1;
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200485 BPF_EMIT_JMP;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100486 break;
487
488 /* ldxb 4 * ([14] & 0xf) is remaped into 6 insns. */
489 case BPF_LDX | BPF_MSH | BPF_B:
Alexei Starovoitov9739eef2014-05-08 14:10:51 -0700490 /* tmp = A */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200491 *insn++ = BPF_MOV64_REG(BPF_REG_TMP, BPF_REG_A);
David S. Miller1268e252014-05-13 13:13:33 -0400492 /* A = BPF_R0 = *(u8 *) (skb->data + K) */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200493 *insn++ = BPF_LD_ABS(BPF_B, fp->k);
Alexei Starovoitov9739eef2014-05-08 14:10:51 -0700494 /* A &= 0xf */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200495 *insn++ = BPF_ALU32_IMM(BPF_AND, BPF_REG_A, 0xf);
Alexei Starovoitov9739eef2014-05-08 14:10:51 -0700496 /* A <<= 2 */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200497 *insn++ = BPF_ALU32_IMM(BPF_LSH, BPF_REG_A, 2);
Alexei Starovoitov9739eef2014-05-08 14:10:51 -0700498 /* X = A */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200499 *insn++ = BPF_MOV64_REG(BPF_REG_X, BPF_REG_A);
Alexei Starovoitov9739eef2014-05-08 14:10:51 -0700500 /* A = tmp */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200501 *insn = BPF_MOV64_REG(BPF_REG_A, BPF_REG_TMP);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100502 break;
503
504 /* RET_K, RET_A are remaped into 2 insns. */
505 case BPF_RET | BPF_A:
506 case BPF_RET | BPF_K:
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200507 *insn++ = BPF_MOV32_RAW(BPF_RVAL(fp->code) == BPF_K ?
508 BPF_K : BPF_X, BPF_REG_0,
509 BPF_REG_A, fp->k);
Alexei Starovoitov9739eef2014-05-08 14:10:51 -0700510 *insn = BPF_EXIT_INSN();
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100511 break;
512
513 /* Store to stack. */
514 case BPF_ST:
515 case BPF_STX:
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200516 *insn = BPF_STX_MEM(BPF_W, BPF_REG_FP, BPF_CLASS(fp->code) ==
517 BPF_ST ? BPF_REG_A : BPF_REG_X,
518 -(BPF_MEMWORDS - fp->k) * 4);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100519 break;
520
521 /* Load from stack. */
522 case BPF_LD | BPF_MEM:
523 case BPF_LDX | BPF_MEM:
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200524 *insn = BPF_LDX_MEM(BPF_W, BPF_CLASS(fp->code) == BPF_LD ?
525 BPF_REG_A : BPF_REG_X, BPF_REG_FP,
526 -(BPF_MEMWORDS - fp->k) * 4);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100527 break;
528
529 /* A = K or X = K */
530 case BPF_LD | BPF_IMM:
531 case BPF_LDX | BPF_IMM:
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200532 *insn = BPF_MOV32_IMM(BPF_CLASS(fp->code) == BPF_LD ?
533 BPF_REG_A : BPF_REG_X, fp->k);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100534 break;
535
536 /* X = A */
537 case BPF_MISC | BPF_TAX:
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200538 *insn = BPF_MOV64_REG(BPF_REG_X, BPF_REG_A);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100539 break;
540
541 /* A = X */
542 case BPF_MISC | BPF_TXA:
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200543 *insn = BPF_MOV64_REG(BPF_REG_A, BPF_REG_X);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100544 break;
545
546 /* A = skb->len or X = skb->len */
547 case BPF_LD | BPF_W | BPF_LEN:
548 case BPF_LDX | BPF_W | BPF_LEN:
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200549 *insn = BPF_LDX_MEM(BPF_W, BPF_CLASS(fp->code) == BPF_LD ?
550 BPF_REG_A : BPF_REG_X, BPF_REG_CTX,
551 offsetof(struct sk_buff, len));
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100552 break;
553
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200554 /* Access seccomp_data fields. */
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100555 case BPF_LDX | BPF_ABS | BPF_W:
Alexei Starovoitov9739eef2014-05-08 14:10:51 -0700556 /* A = *(u32 *) (ctx + K) */
557 *insn = BPF_LDX_MEM(BPF_W, BPF_REG_A, BPF_REG_CTX, fp->k);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100558 break;
559
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200560 /* Unkown instruction. */
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100561 default:
562 goto err;
563 }
564
565 insn++;
566 if (new_prog)
567 memcpy(new_insn, tmp_insns,
568 sizeof(*insn) * (insn - tmp_insns));
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100569 new_insn += insn - tmp_insns;
570 }
571
572 if (!new_prog) {
573 /* Only calculating new length. */
574 *new_len = new_insn - new_prog;
575 return 0;
576 }
577
578 pass++;
579 if (new_flen != new_insn - new_prog) {
580 new_flen = new_insn - new_prog;
581 if (pass > 2)
582 goto err;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100583 goto do_pass;
584 }
585
586 kfree(addrs);
587 BUG_ON(*new_len != new_flen);
588 return 0;
589err:
590 kfree(addrs);
591 return -EINVAL;
592}
593
594/* Security:
595 *
Eric Dumazet2d5311e2010-12-01 20:46:24 +0000596 * A BPF program is able to use 16 cells of memory to store intermediate
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100597 * values (check u32 mem[BPF_MEMWORDS] in sk_run_filter()).
598 *
Eric Dumazet2d5311e2010-12-01 20:46:24 +0000599 * As we dont want to clear mem[] array for each packet going through
600 * sk_run_filter(), we check that filter loaded by user never try to read
601 * a cell if not previously written, and we check all branches to be sure
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300602 * a malicious user doesn't try to abuse us.
Eric Dumazet2d5311e2010-12-01 20:46:24 +0000603 */
Eric Dumazetec31a052014-07-12 15:49:16 +0200604static int check_load_and_stores(const struct sock_filter *filter, int flen)
Eric Dumazet2d5311e2010-12-01 20:46:24 +0000605{
Daniel Borkmann34805932014-05-29 10:22:50 +0200606 u16 *masks, memvalid = 0; /* One bit per cell, 16 cells */
Eric Dumazet2d5311e2010-12-01 20:46:24 +0000607 int pc, ret = 0;
608
609 BUILD_BUG_ON(BPF_MEMWORDS > 16);
Daniel Borkmann34805932014-05-29 10:22:50 +0200610
Tobias Klauser99e72a02014-06-24 15:33:22 +0200611 masks = kmalloc_array(flen, sizeof(*masks), GFP_KERNEL);
Eric Dumazet2d5311e2010-12-01 20:46:24 +0000612 if (!masks)
613 return -ENOMEM;
Daniel Borkmann34805932014-05-29 10:22:50 +0200614
Eric Dumazet2d5311e2010-12-01 20:46:24 +0000615 memset(masks, 0xff, flen * sizeof(*masks));
616
617 for (pc = 0; pc < flen; pc++) {
618 memvalid &= masks[pc];
619
620 switch (filter[pc].code) {
Daniel Borkmann34805932014-05-29 10:22:50 +0200621 case BPF_ST:
622 case BPF_STX:
Eric Dumazet2d5311e2010-12-01 20:46:24 +0000623 memvalid |= (1 << filter[pc].k);
624 break;
Daniel Borkmann34805932014-05-29 10:22:50 +0200625 case BPF_LD | BPF_MEM:
626 case BPF_LDX | BPF_MEM:
Eric Dumazet2d5311e2010-12-01 20:46:24 +0000627 if (!(memvalid & (1 << filter[pc].k))) {
628 ret = -EINVAL;
629 goto error;
630 }
631 break;
Daniel Borkmann34805932014-05-29 10:22:50 +0200632 case BPF_JMP | BPF_JA:
633 /* A jump must set masks on target */
Eric Dumazet2d5311e2010-12-01 20:46:24 +0000634 masks[pc + 1 + filter[pc].k] &= memvalid;
635 memvalid = ~0;
636 break;
Daniel Borkmann34805932014-05-29 10:22:50 +0200637 case BPF_JMP | BPF_JEQ | BPF_K:
638 case BPF_JMP | BPF_JEQ | BPF_X:
639 case BPF_JMP | BPF_JGE | BPF_K:
640 case BPF_JMP | BPF_JGE | BPF_X:
641 case BPF_JMP | BPF_JGT | BPF_K:
642 case BPF_JMP | BPF_JGT | BPF_X:
643 case BPF_JMP | BPF_JSET | BPF_K:
644 case BPF_JMP | BPF_JSET | BPF_X:
645 /* A jump must set masks on targets */
Eric Dumazet2d5311e2010-12-01 20:46:24 +0000646 masks[pc + 1 + filter[pc].jt] &= memvalid;
647 masks[pc + 1 + filter[pc].jf] &= memvalid;
648 memvalid = ~0;
649 break;
650 }
651 }
652error:
653 kfree(masks);
654 return ret;
655}
656
Daniel Borkmann34805932014-05-29 10:22:50 +0200657static bool chk_code_allowed(u16 code_to_probe)
658{
659 static const bool codes[] = {
660 /* 32 bit ALU operations */
661 [BPF_ALU | BPF_ADD | BPF_K] = true,
662 [BPF_ALU | BPF_ADD | BPF_X] = true,
663 [BPF_ALU | BPF_SUB | BPF_K] = true,
664 [BPF_ALU | BPF_SUB | BPF_X] = true,
665 [BPF_ALU | BPF_MUL | BPF_K] = true,
666 [BPF_ALU | BPF_MUL | BPF_X] = true,
667 [BPF_ALU | BPF_DIV | BPF_K] = true,
668 [BPF_ALU | BPF_DIV | BPF_X] = true,
669 [BPF_ALU | BPF_MOD | BPF_K] = true,
670 [BPF_ALU | BPF_MOD | BPF_X] = true,
671 [BPF_ALU | BPF_AND | BPF_K] = true,
672 [BPF_ALU | BPF_AND | BPF_X] = true,
673 [BPF_ALU | BPF_OR | BPF_K] = true,
674 [BPF_ALU | BPF_OR | BPF_X] = true,
675 [BPF_ALU | BPF_XOR | BPF_K] = true,
676 [BPF_ALU | BPF_XOR | BPF_X] = true,
677 [BPF_ALU | BPF_LSH | BPF_K] = true,
678 [BPF_ALU | BPF_LSH | BPF_X] = true,
679 [BPF_ALU | BPF_RSH | BPF_K] = true,
680 [BPF_ALU | BPF_RSH | BPF_X] = true,
681 [BPF_ALU | BPF_NEG] = true,
682 /* Load instructions */
683 [BPF_LD | BPF_W | BPF_ABS] = true,
684 [BPF_LD | BPF_H | BPF_ABS] = true,
685 [BPF_LD | BPF_B | BPF_ABS] = true,
686 [BPF_LD | BPF_W | BPF_LEN] = true,
687 [BPF_LD | BPF_W | BPF_IND] = true,
688 [BPF_LD | BPF_H | BPF_IND] = true,
689 [BPF_LD | BPF_B | BPF_IND] = true,
690 [BPF_LD | BPF_IMM] = true,
691 [BPF_LD | BPF_MEM] = true,
692 [BPF_LDX | BPF_W | BPF_LEN] = true,
693 [BPF_LDX | BPF_B | BPF_MSH] = true,
694 [BPF_LDX | BPF_IMM] = true,
695 [BPF_LDX | BPF_MEM] = true,
696 /* Store instructions */
697 [BPF_ST] = true,
698 [BPF_STX] = true,
699 /* Misc instructions */
700 [BPF_MISC | BPF_TAX] = true,
701 [BPF_MISC | BPF_TXA] = true,
702 /* Return instructions */
703 [BPF_RET | BPF_K] = true,
704 [BPF_RET | BPF_A] = true,
705 /* Jump instructions */
706 [BPF_JMP | BPF_JA] = true,
707 [BPF_JMP | BPF_JEQ | BPF_K] = true,
708 [BPF_JMP | BPF_JEQ | BPF_X] = true,
709 [BPF_JMP | BPF_JGE | BPF_K] = true,
710 [BPF_JMP | BPF_JGE | BPF_X] = true,
711 [BPF_JMP | BPF_JGT | BPF_K] = true,
712 [BPF_JMP | BPF_JGT | BPF_X] = true,
713 [BPF_JMP | BPF_JSET | BPF_K] = true,
714 [BPF_JMP | BPF_JSET | BPF_X] = true,
715 };
716
717 if (code_to_probe >= ARRAY_SIZE(codes))
718 return false;
719
720 return codes[code_to_probe];
721}
722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723/**
Alexei Starovoitov4df95ff2014-07-30 20:34:14 -0700724 * bpf_check_classic - verify socket filter code
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 * @filter: filter to verify
726 * @flen: length of filter
727 *
728 * Check the user's filter code. If we let some ugly
729 * filter code slip through kaboom! The filter must contain
Kris Katterjohn93699862006-01-04 13:58:36 -0800730 * no references or jumps that are out of range, no illegal
731 * instructions, and must end with a RET instruction.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 *
Kris Katterjohn7b11f692006-01-13 14:33:06 -0800733 * All jumps are forward as they are not signed.
734 *
735 * Returns 0 if the rule set is legal or -EINVAL if not.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 */
Alexei Starovoitov4df95ff2014-07-30 20:34:14 -0700737int bpf_check_classic(const struct sock_filter *filter, unsigned int flen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
Daniel Borkmannaa1113d2012-12-28 10:50:17 +0000739 bool anc_found;
Daniel Borkmann34805932014-05-29 10:22:50 +0200740 int pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
David S. Miller1b93ae642005-12-27 13:57:59 -0800742 if (flen == 0 || flen > BPF_MAXINSNS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 return -EINVAL;
744
Daniel Borkmann34805932014-05-29 10:22:50 +0200745 /* Check the filter code now */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 for (pc = 0; pc < flen; pc++) {
Eric Dumazetec31a052014-07-12 15:49:16 +0200747 const struct sock_filter *ftest = &filter[pc];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Daniel Borkmann34805932014-05-29 10:22:50 +0200749 /* May we actually operate on this code? */
750 if (!chk_code_allowed(ftest->code))
Tetsuo Handacba328f2010-11-16 15:19:51 +0000751 return -EINVAL;
Daniel Borkmann34805932014-05-29 10:22:50 +0200752
Kris Katterjohn93699862006-01-04 13:58:36 -0800753 /* Some instructions need special checks */
Daniel Borkmann34805932014-05-29 10:22:50 +0200754 switch (ftest->code) {
755 case BPF_ALU | BPF_DIV | BPF_K:
756 case BPF_ALU | BPF_MOD | BPF_K:
757 /* Check for division by zero */
Eric Dumazetb6069a92012-09-07 22:03:35 +0000758 if (ftest->k == 0)
759 return -EINVAL;
760 break;
Daniel Borkmann34805932014-05-29 10:22:50 +0200761 case BPF_LD | BPF_MEM:
762 case BPF_LDX | BPF_MEM:
763 case BPF_ST:
764 case BPF_STX:
765 /* Check for invalid memory addresses */
Kris Katterjohn93699862006-01-04 13:58:36 -0800766 if (ftest->k >= BPF_MEMWORDS)
767 return -EINVAL;
Hagen Paul Pfeifer01f2f3f2010-06-19 17:05:36 +0000768 break;
Daniel Borkmann34805932014-05-29 10:22:50 +0200769 case BPF_JMP | BPF_JA:
770 /* Note, the large ftest->k might cause loops.
Kris Katterjohn93699862006-01-04 13:58:36 -0800771 * Compare this with conditional jumps below,
772 * where offsets are limited. --ANK (981016)
773 */
Daniel Borkmann34805932014-05-29 10:22:50 +0200774 if (ftest->k >= (unsigned int)(flen - pc - 1))
Kris Katterjohn93699862006-01-04 13:58:36 -0800775 return -EINVAL;
776 break;
Daniel Borkmann34805932014-05-29 10:22:50 +0200777 case BPF_JMP | BPF_JEQ | BPF_K:
778 case BPF_JMP | BPF_JEQ | BPF_X:
779 case BPF_JMP | BPF_JGE | BPF_K:
780 case BPF_JMP | BPF_JGE | BPF_X:
781 case BPF_JMP | BPF_JGT | BPF_K:
782 case BPF_JMP | BPF_JGT | BPF_X:
783 case BPF_JMP | BPF_JSET | BPF_K:
784 case BPF_JMP | BPF_JSET | BPF_X:
785 /* Both conditionals must be safe */
Hagen Paul Pfeifer01f2f3f2010-06-19 17:05:36 +0000786 if (pc + ftest->jt + 1 >= flen ||
787 pc + ftest->jf + 1 >= flen)
788 return -EINVAL;
Tetsuo Handacba328f2010-11-16 15:19:51 +0000789 break;
Daniel Borkmann34805932014-05-29 10:22:50 +0200790 case BPF_LD | BPF_W | BPF_ABS:
791 case BPF_LD | BPF_H | BPF_ABS:
792 case BPF_LD | BPF_B | BPF_ABS:
Daniel Borkmannaa1113d2012-12-28 10:50:17 +0000793 anc_found = false;
Daniel Borkmann34805932014-05-29 10:22:50 +0200794 if (bpf_anc_helper(ftest) & BPF_ANC)
795 anc_found = true;
796 /* Ancillary operation unknown or unsupported */
Daniel Borkmannaa1113d2012-12-28 10:50:17 +0000797 if (anc_found == false && ftest->k >= SKF_AD_OFF)
798 return -EINVAL;
Hagen Paul Pfeifer01f2f3f2010-06-19 17:05:36 +0000799 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 }
801
Daniel Borkmann34805932014-05-29 10:22:50 +0200802 /* Last instruction must be a RET code */
Hagen Paul Pfeifer01f2f3f2010-06-19 17:05:36 +0000803 switch (filter[flen - 1].code) {
Daniel Borkmann34805932014-05-29 10:22:50 +0200804 case BPF_RET | BPF_K:
805 case BPF_RET | BPF_A:
Eric Dumazet2d5311e2010-12-01 20:46:24 +0000806 return check_load_and_stores(filter, flen);
Tetsuo Handacba328f2010-11-16 15:19:51 +0000807 }
Daniel Borkmann34805932014-05-29 10:22:50 +0200808
Tetsuo Handacba328f2010-11-16 15:19:51 +0000809 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810}
Alexei Starovoitov4df95ff2014-07-30 20:34:14 -0700811EXPORT_SYMBOL(bpf_check_classic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700813static int bpf_prog_store_orig_filter(struct bpf_prog *fp,
814 const struct sock_fprog *fprog)
Daniel Borkmanna3ea2692014-03-28 18:58:19 +0100815{
Alexei Starovoitov009937e2014-07-30 20:34:13 -0700816 unsigned int fsize = bpf_classic_proglen(fprog);
Daniel Borkmanna3ea2692014-03-28 18:58:19 +0100817 struct sock_fprog_kern *fkprog;
818
819 fp->orig_prog = kmalloc(sizeof(*fkprog), GFP_KERNEL);
820 if (!fp->orig_prog)
821 return -ENOMEM;
822
823 fkprog = fp->orig_prog;
824 fkprog->len = fprog->len;
825 fkprog->filter = kmemdup(fp->insns, fsize, GFP_KERNEL);
826 if (!fkprog->filter) {
827 kfree(fp->orig_prog);
828 return -ENOMEM;
829 }
830
831 return 0;
832}
833
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700834static void bpf_release_orig_filter(struct bpf_prog *fp)
Daniel Borkmanna3ea2692014-03-28 18:58:19 +0100835{
836 struct sock_fprog_kern *fprog = fp->orig_prog;
837
838 if (fprog) {
839 kfree(fprog->filter);
840 kfree(fprog);
841 }
842}
843
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700844static void __bpf_prog_release(struct bpf_prog *prog)
845{
846 bpf_release_orig_filter(prog);
847 bpf_prog_free(prog);
848}
849
Pablo Neira34c5bd62014-07-29 17:36:28 +0200850static void __sk_filter_release(struct sk_filter *fp)
851{
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700852 __bpf_prog_release(fp->prog);
853 kfree(fp);
Pablo Neira34c5bd62014-07-29 17:36:28 +0200854}
855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856/**
Eric Dumazet46bcf142010-12-06 09:29:43 -0800857 * sk_filter_release_rcu - Release a socket filter by rcu_head
Pavel Emelyanov47e958e2007-10-17 21:22:42 -0700858 * @rcu: rcu_head that contains the sk_filter to free
859 */
Daniel Borkmannfbc907f2014-03-28 18:58:20 +0100860static void sk_filter_release_rcu(struct rcu_head *rcu)
Pavel Emelyanov47e958e2007-10-17 21:22:42 -0700861{
862 struct sk_filter *fp = container_of(rcu, struct sk_filter, rcu);
863
Pablo Neira34c5bd62014-07-29 17:36:28 +0200864 __sk_filter_release(fp);
Pavel Emelyanov47e958e2007-10-17 21:22:42 -0700865}
Daniel Borkmannfbc907f2014-03-28 18:58:20 +0100866
867/**
868 * sk_filter_release - release a socket filter
869 * @fp: filter to remove
870 *
871 * Remove a filter from a socket and release its resources.
872 */
873static void sk_filter_release(struct sk_filter *fp)
874{
875 if (atomic_dec_and_test(&fp->refcnt))
876 call_rcu(&fp->rcu, sk_filter_release_rcu);
877}
878
879void sk_filter_uncharge(struct sock *sk, struct sk_filter *fp)
880{
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700881 u32 filter_size = bpf_prog_size(fp->prog->len);
Alexei Starovoitov278571b2014-07-30 20:34:12 -0700882
883 atomic_sub(filter_size, &sk->sk_omem_alloc);
Daniel Borkmannfbc907f2014-03-28 18:58:20 +0100884 sk_filter_release(fp);
885}
886
Alexei Starovoitov278571b2014-07-30 20:34:12 -0700887/* try to charge the socket memory if there is space available
888 * return true on success
889 */
890bool sk_filter_charge(struct sock *sk, struct sk_filter *fp)
Daniel Borkmannfbc907f2014-03-28 18:58:20 +0100891{
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700892 u32 filter_size = bpf_prog_size(fp->prog->len);
Pavel Emelyanov47e958e2007-10-17 21:22:42 -0700893
Alexei Starovoitov278571b2014-07-30 20:34:12 -0700894 /* same check as in sock_kmalloc() */
895 if (filter_size <= sysctl_optmem_max &&
896 atomic_read(&sk->sk_omem_alloc) + filter_size < sysctl_optmem_max) {
897 atomic_inc(&fp->refcnt);
898 atomic_add(filter_size, &sk->sk_omem_alloc);
899 return true;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100900 }
Alexei Starovoitov278571b2014-07-30 20:34:12 -0700901 return false;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100902}
903
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700904static struct bpf_prog *bpf_migrate_filter(struct bpf_prog *fp)
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100905{
906 struct sock_filter *old_prog;
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700907 struct bpf_prog *old_fp;
Daniel Borkmann34805932014-05-29 10:22:50 +0200908 int err, new_len, old_len = fp->len;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100909
910 /* We are free to overwrite insns et al right here as it
911 * won't be used at this point in time anymore internally
912 * after the migration to the internal BPF instruction
913 * representation.
914 */
915 BUILD_BUG_ON(sizeof(struct sock_filter) !=
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700916 sizeof(struct bpf_insn));
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100917
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100918 /* Conversion cannot happen on overlapping memory areas,
919 * so we need to keep the user BPF around until the 2nd
920 * pass. At this time, the user BPF is stored in fp->insns.
921 */
922 old_prog = kmemdup(fp->insns, old_len * sizeof(struct sock_filter),
923 GFP_KERNEL);
924 if (!old_prog) {
925 err = -ENOMEM;
926 goto out_err;
927 }
928
929 /* 1st pass: calculate the new program length. */
Alexei Starovoitov8fb575c2014-07-30 20:34:15 -0700930 err = bpf_convert_filter(old_prog, old_len, NULL, &new_len);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100931 if (err)
932 goto out_err_free;
933
934 /* Expand fp for appending the new filter representation. */
935 old_fp = fp;
Daniel Borkmann60a3b222014-09-02 22:53:44 +0200936 fp = bpf_prog_realloc(old_fp, bpf_prog_size(new_len), 0);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100937 if (!fp) {
938 /* The old_fp is still around in case we couldn't
939 * allocate new memory, so uncharge on that one.
940 */
941 fp = old_fp;
942 err = -ENOMEM;
943 goto out_err_free;
944 }
945
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100946 fp->len = new_len;
947
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700948 /* 2nd pass: remap sock_filter insns into bpf_insn insns. */
Alexei Starovoitov8fb575c2014-07-30 20:34:15 -0700949 err = bpf_convert_filter(old_prog, old_len, fp->insnsi, &new_len);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100950 if (err)
Alexei Starovoitov8fb575c2014-07-30 20:34:15 -0700951 /* 2nd bpf_convert_filter() can fail only if it fails
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100952 * to allocate memory, remapping must succeed. Note,
953 * that at this time old_fp has already been released
Alexei Starovoitov278571b2014-07-30 20:34:12 -0700954 * by krealloc().
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100955 */
956 goto out_err_free;
957
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700958 bpf_prog_select_runtime(fp);
Alexei Starovoitov5fe821a2014-05-19 14:56:14 -0700959
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100960 kfree(old_prog);
961 return fp;
962
963out_err_free:
964 kfree(old_prog);
965out_err:
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700966 __bpf_prog_release(fp);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100967 return ERR_PTR(err);
968}
969
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700970static struct bpf_prog *bpf_prepare_filter(struct bpf_prog *fp)
Jiri Pirko302d6632012-03-31 11:01:19 +0000971{
972 int err;
973
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100974 fp->bpf_func = NULL;
Daniel Borkmannf8bbbfc2014-03-28 18:58:18 +0100975 fp->jited = 0;
Jiri Pirko302d6632012-03-31 11:01:19 +0000976
Alexei Starovoitov4df95ff2014-07-30 20:34:14 -0700977 err = bpf_check_classic(fp->insns, fp->len);
Leon Yu418c96a2014-06-01 05:37:25 +0000978 if (err) {
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700979 __bpf_prog_release(fp);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100980 return ERR_PTR(err);
Leon Yu418c96a2014-06-01 05:37:25 +0000981 }
Jiri Pirko302d6632012-03-31 11:01:19 +0000982
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100983 /* Probe if we can JIT compile the filter and if so, do
984 * the compilation of the filter.
985 */
Jiri Pirko302d6632012-03-31 11:01:19 +0000986 bpf_jit_compile(fp);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100987
988 /* JIT compiler couldn't process this filter, so do the
989 * internal BPF translation for the optimized interpreter.
990 */
Alexei Starovoitov5fe821a2014-05-19 14:56:14 -0700991 if (!fp->jited)
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700992 fp = bpf_migrate_filter(fp);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100993
994 return fp;
Jiri Pirko302d6632012-03-31 11:01:19 +0000995}
996
997/**
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700998 * bpf_prog_create - create an unattached filter
Randy Dunlapc6c4b972012-06-08 14:01:44 +0000999 * @pfp: the unattached filter that is created
Tobias Klauser677a9fd2014-06-24 15:33:21 +02001000 * @fprog: the filter program
Jiri Pirko302d6632012-03-31 11:01:19 +00001001 *
Randy Dunlapc6c4b972012-06-08 14:01:44 +00001002 * Create a filter independent of any socket. We first run some
Jiri Pirko302d6632012-03-31 11:01:19 +00001003 * sanity checks on it to make sure it does not explode on us later.
1004 * If an error occurs or there is insufficient memory for the filter
1005 * a negative errno code is returned. On success the return is zero.
1006 */
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001007int bpf_prog_create(struct bpf_prog **pfp, struct sock_fprog_kern *fprog)
Jiri Pirko302d6632012-03-31 11:01:19 +00001008{
Alexei Starovoitov009937e2014-07-30 20:34:13 -07001009 unsigned int fsize = bpf_classic_proglen(fprog);
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001010 struct bpf_prog *fp;
Jiri Pirko302d6632012-03-31 11:01:19 +00001011
1012 /* Make sure new filter is there and in the right amounts. */
1013 if (fprog->filter == NULL)
1014 return -EINVAL;
1015
Daniel Borkmann60a3b222014-09-02 22:53:44 +02001016 fp = bpf_prog_alloc(bpf_prog_size(fprog->len), 0);
Jiri Pirko302d6632012-03-31 11:01:19 +00001017 if (!fp)
1018 return -ENOMEM;
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01001019
Jiri Pirko302d6632012-03-31 11:01:19 +00001020 memcpy(fp->insns, fprog->filter, fsize);
1021
Jiri Pirko302d6632012-03-31 11:01:19 +00001022 fp->len = fprog->len;
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01001023 /* Since unattached filters are not copied back to user
1024 * space through sk_get_filter(), we do not need to hold
1025 * a copy here, and can spare us the work.
1026 */
1027 fp->orig_prog = NULL;
Jiri Pirko302d6632012-03-31 11:01:19 +00001028
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001029 /* bpf_prepare_filter() already takes care of freeing
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +01001030 * memory in case something goes wrong.
1031 */
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001032 fp = bpf_prepare_filter(fp);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +01001033 if (IS_ERR(fp))
1034 return PTR_ERR(fp);
Jiri Pirko302d6632012-03-31 11:01:19 +00001035
1036 *pfp = fp;
1037 return 0;
Jiri Pirko302d6632012-03-31 11:01:19 +00001038}
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001039EXPORT_SYMBOL_GPL(bpf_prog_create);
Jiri Pirko302d6632012-03-31 11:01:19 +00001040
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001041void bpf_prog_destroy(struct bpf_prog *fp)
Jiri Pirko302d6632012-03-31 11:01:19 +00001042{
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001043 __bpf_prog_release(fp);
Jiri Pirko302d6632012-03-31 11:01:19 +00001044}
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001045EXPORT_SYMBOL_GPL(bpf_prog_destroy);
Jiri Pirko302d6632012-03-31 11:01:19 +00001046
Pavel Emelyanov47e958e2007-10-17 21:22:42 -07001047/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 * sk_attach_filter - attach a socket filter
1049 * @fprog: the filter program
1050 * @sk: the socket to use
1051 *
1052 * Attach the user's filter code. We first run some sanity checks on
1053 * it to make sure it does not explode on us later. If an error
1054 * occurs or there is insufficient memory for the filter a negative
1055 * errno code is returned. On success the return is zero.
1056 */
1057int sk_attach_filter(struct sock_fprog *fprog, struct sock *sk)
1058{
Pavel Emelyanovd3904b72007-10-17 21:22:17 -07001059 struct sk_filter *fp, *old_fp;
Alexei Starovoitov009937e2014-07-30 20:34:13 -07001060 unsigned int fsize = bpf_classic_proglen(fprog);
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001061 unsigned int bpf_fsize = bpf_prog_size(fprog->len);
1062 struct bpf_prog *prog;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 int err;
1064
Vincent Bernatd59577b2013-01-16 22:55:49 +01001065 if (sock_flag(sk, SOCK_FILTER_LOCKED))
1066 return -EPERM;
1067
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 /* Make sure new filter is there and in the right amounts. */
Kris Katterjohne35bedf2006-01-17 02:25:52 -08001069 if (fprog->filter == NULL)
1070 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
Daniel Borkmann60a3b222014-09-02 22:53:44 +02001072 prog = bpf_prog_alloc(bpf_fsize, 0);
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001073 if (!prog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 return -ENOMEM;
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01001075
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001076 if (copy_from_user(prog->insns, fprog->filter, fsize)) {
1077 kfree(prog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 return -EFAULT;
1079 }
1080
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001081 prog->len = fprog->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001083 err = bpf_prog_store_orig_filter(prog, fprog);
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01001084 if (err) {
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001085 kfree(prog);
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01001086 return -ENOMEM;
1087 }
1088
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001089 /* bpf_prepare_filter() already takes care of freeing
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +01001090 * memory in case something goes wrong.
1091 */
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001092 prog = bpf_prepare_filter(prog);
1093 if (IS_ERR(prog))
1094 return PTR_ERR(prog);
1095
1096 fp = kmalloc(sizeof(*fp), GFP_KERNEL);
1097 if (!fp) {
1098 __bpf_prog_release(prog);
1099 return -ENOMEM;
1100 }
1101 fp->prog = prog;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
Alexei Starovoitov278571b2014-07-30 20:34:12 -07001103 atomic_set(&fp->refcnt, 0);
1104
1105 if (!sk_filter_charge(sk, fp)) {
1106 __sk_filter_release(fp);
1107 return -ENOMEM;
1108 }
1109
Eric Dumazetf91ff5b2010-09-27 06:07:30 +00001110 old_fp = rcu_dereference_protected(sk->sk_filter,
1111 sock_owned_by_user(sk));
Pavel Emelyanovd3904b72007-10-17 21:22:17 -07001112 rcu_assign_pointer(sk->sk_filter, fp);
Pavel Emelyanovd3904b72007-10-17 21:22:17 -07001113
Olof Johansson9b013e02007-10-18 21:48:39 -07001114 if (old_fp)
Eric Dumazet46bcf142010-12-06 09:29:43 -08001115 sk_filter_uncharge(sk, old_fp);
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01001116
Pavel Emelyanovd3904b72007-10-17 21:22:17 -07001117 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118}
Michael S. Tsirkin5ff3f072010-02-14 01:01:00 +00001119EXPORT_SYMBOL_GPL(sk_attach_filter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
Pavel Emelyanov55b33322007-10-17 21:21:26 -07001121int sk_detach_filter(struct sock *sk)
1122{
1123 int ret = -ENOENT;
1124 struct sk_filter *filter;
1125
Vincent Bernatd59577b2013-01-16 22:55:49 +01001126 if (sock_flag(sk, SOCK_FILTER_LOCKED))
1127 return -EPERM;
1128
Eric Dumazetf91ff5b2010-09-27 06:07:30 +00001129 filter = rcu_dereference_protected(sk->sk_filter,
1130 sock_owned_by_user(sk));
Pavel Emelyanov55b33322007-10-17 21:21:26 -07001131 if (filter) {
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00001132 RCU_INIT_POINTER(sk->sk_filter, NULL);
Eric Dumazet46bcf142010-12-06 09:29:43 -08001133 sk_filter_uncharge(sk, filter);
Pavel Emelyanov55b33322007-10-17 21:21:26 -07001134 ret = 0;
1135 }
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01001136
Pavel Emelyanov55b33322007-10-17 21:21:26 -07001137 return ret;
1138}
Michael S. Tsirkin5ff3f072010-02-14 01:01:00 +00001139EXPORT_SYMBOL_GPL(sk_detach_filter);
Pavel Emelyanova8fc9272012-11-01 02:01:48 +00001140
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01001141int sk_get_filter(struct sock *sk, struct sock_filter __user *ubuf,
1142 unsigned int len)
Pavel Emelyanova8fc9272012-11-01 02:01:48 +00001143{
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01001144 struct sock_fprog_kern *fprog;
Pavel Emelyanova8fc9272012-11-01 02:01:48 +00001145 struct sk_filter *filter;
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01001146 int ret = 0;
Pavel Emelyanova8fc9272012-11-01 02:01:48 +00001147
1148 lock_sock(sk);
1149 filter = rcu_dereference_protected(sk->sk_filter,
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01001150 sock_owned_by_user(sk));
Pavel Emelyanova8fc9272012-11-01 02:01:48 +00001151 if (!filter)
1152 goto out;
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01001153
1154 /* We're copying the filter that has been originally attached,
1155 * so no conversion/decode needed anymore.
1156 */
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001157 fprog = filter->prog->orig_prog;
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01001158
1159 ret = fprog->len;
Pavel Emelyanova8fc9272012-11-01 02:01:48 +00001160 if (!len)
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01001161 /* User space only enquires number of filter blocks. */
Pavel Emelyanova8fc9272012-11-01 02:01:48 +00001162 goto out;
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01001163
Pavel Emelyanova8fc9272012-11-01 02:01:48 +00001164 ret = -EINVAL;
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01001165 if (len < fprog->len)
Pavel Emelyanova8fc9272012-11-01 02:01:48 +00001166 goto out;
1167
1168 ret = -EFAULT;
Alexei Starovoitov009937e2014-07-30 20:34:13 -07001169 if (copy_to_user(ubuf, fprog->filter, bpf_classic_proglen(fprog)))
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01001170 goto out;
Pavel Emelyanova8fc9272012-11-01 02:01:48 +00001171
Daniel Borkmanna3ea2692014-03-28 18:58:19 +01001172 /* Instead of bytes, the API requests to return the number
1173 * of filter blocks.
1174 */
1175 ret = fprog->len;
Pavel Emelyanova8fc9272012-11-01 02:01:48 +00001176out:
1177 release_sock(sk);
1178 return ret;
1179}