2 * bpf_jib_asm.S: Packet/header access helper functions for MIPS/MIPS64 BPF
5 * Copyright (C) 2015 Imagination Technologies Ltd.
6 * Author: Markos Chandras <markos.chandras@imgtec.com>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; version 2 of the License.
14 #include <asm/regdef.h>
19 * r_skb_hl skb header length
21 * r_off(a1) offset register
27 * r_s0 Scratch register 0
28 * r_s1 Scratch register 1
32 * a1: offset (imm or imm + X)
34 * All non-BPF-ABI registers are free for use. On return, we only
35 * care about r_ret. The BPF-ABI registers are assumed to remain
36 * unmodified during the entire filter operation.
41 #define SKF_LL_OFF (-0x200000) /* Can't include linux/filter.h in assembly */
43 /* We know better :) so prevent assembler reordering etc */
46 #define is_offset_negative(TYPE) \
47 /* If offset is negative we have more work to do */ \
49 bgtz t0, bpf_slow_path_##TYPE##_neg; \
50 /* Be careful what follows in DS. */
52 #define is_offset_in_header(SIZE, TYPE) \
53 /* Reading from header? */ \
54 addiu $r_s0, $r_skb_hl, -SIZE; \
55 slt t0, $r_s0, offset; \
56 bgtz t0, bpf_slow_path_##TYPE; \
59 is_offset_negative(word)
60 FEXPORT(sk_load_word_positive)
61 is_offset_in_header(4, word)
62 /* Offset within header boundaries */
63 PTR_ADDU t1, $r_skb_data, offset
67 #ifdef CONFIG_CPU_LITTLE_ENDIAN
68 # if defined(__mips_isa_rev) && (__mips_isa_rev >= 2)
88 is_offset_negative(half)
89 FEXPORT(sk_load_half_positive)
90 is_offset_in_header(2, half)
91 /* Offset within header boundaries */
92 PTR_ADDU t1, $r_skb_data, offset
96 #ifdef CONFIG_CPU_LITTLE_ENDIAN
97 # if defined(__mips_isa_rev) && (__mips_isa_rev >= 2)
102 andi t1, $r_A, 0xff00
113 is_offset_negative(byte)
114 FEXPORT(sk_load_byte_positive)
115 is_offset_in_header(1, byte)
116 /* Offset within header boundaries */
117 PTR_ADDU t1, $r_skb_data, offset
124 * call skb_copy_bits:
125 * (prototype in linux/skbuff.h)
127 * int skb_copy_bits(sk_buff *skb, int offset, void *to, int len)
129 * o32 mandates we leave 4 spaces for argument registers in case
130 * the callee needs to use them. Even though we don't care about
131 * the argument registers ourselves, we need to allocate that space
132 * to remain ABI compliant since the callee may want to use that space.
133 * We also allocate 2 more spaces for $r_ra and our return register (*to).
135 * n64 is a bit different. The *caller* will allocate the space to preserve
136 * the arguments. So in 64-bit kernels, we allocate the 4-arg space for no
137 * good reason but it does not matter that much really.
139 * (void *to) is returned in r_s0
142 #define bpf_slow_path_common(SIZE) \
143 /* Quick check. Are we within reasonable boundaries? */ \
144 LONG_ADDIU $r_s1, $r_skb_len, -SIZE; \
145 sltu $r_s0, offset, $r_s1; \
147 /* Load 4th argument in DS */ \
148 LONG_ADDIU a3, zero, SIZE; \
149 PTR_ADDIU $r_sp, $r_sp, -(6 * SZREG); \
150 PTR_LA t0, skb_copy_bits; \
151 PTR_S $r_ra, (5 * SZREG)($r_sp); \
152 /* Assign low slot to a2 */ \
155 /* Reset our destination slot (DS but it's ok) */ \
156 INT_S zero, (4 * SZREG)($r_sp); \
158 * skb_copy_bits returns 0 on success and -EFAULT \
159 * on error. Our data live in a2. Do not bother with \
160 * our data if an error has been returned. \
162 /* Restore our frame */ \
163 PTR_L $r_ra, (5 * SZREG)($r_sp); \
164 INT_L $r_s0, (4 * SZREG)($r_sp); \
166 PTR_ADDIU $r_sp, $r_sp, 6 * SZREG; \
169 NESTED(bpf_slow_path_word, (6 * SZREG), $r_sp)
170 bpf_slow_path_common(4)
171 #ifdef CONFIG_CPU_LITTLE_ENDIAN
172 # if defined(__mips_isa_rev) && (__mips_isa_rev >= 2)
182 andi t1, $r_s0, 0xff00
193 END(bpf_slow_path_word)
195 NESTED(bpf_slow_path_half, (6 * SZREG), $r_sp)
196 bpf_slow_path_common(2)
197 #ifdef CONFIG_CPU_LITTLE_ENDIAN
198 # if defined(__mips_isa_rev) && (__mips_isa_rev >= 2)
203 andi t1, $r_s0, 0xff00
214 END(bpf_slow_path_half)
216 NESTED(bpf_slow_path_byte, (6 * SZREG), $r_sp)
217 bpf_slow_path_common(1)
221 END(bpf_slow_path_byte)
224 * Negative entry points
226 .macro bpf_is_end_of_data
228 /* Reading link layer data? */
231 /* Be careful what follows in DS. */
234 * call skb_copy_bits:
235 * (prototype in linux/filter.h)
237 * void *bpf_internal_load_pointer_neg_helper(const struct sk_buff *skb,
238 * int k, unsigned int size)
240 * see above (bpf_slow_path_common) for ABI restrictions
242 #define bpf_negative_common(SIZE) \
243 PTR_ADDIU $r_sp, $r_sp, -(6 * SZREG); \
244 PTR_LA t0, bpf_internal_load_pointer_neg_helper; \
245 PTR_S $r_ra, (5 * SZREG)($r_sp); \
248 PTR_L $r_ra, (5 * SZREG)($r_sp); \
249 /* Check return pointer */ \
251 PTR_ADDIU $r_sp, $r_sp, 6 * SZREG; \
252 /* Preserve our pointer */ \
254 /* Set return value */ \
257 bpf_slow_path_word_neg:
259 NESTED(sk_load_word_negative, (6 * SZREG), $r_sp)
260 bpf_negative_common(4)
263 END(sk_load_word_negative)
265 bpf_slow_path_half_neg:
267 NESTED(sk_load_half_negative, (6 * SZREG), $r_sp)
268 bpf_negative_common(2)
271 END(sk_load_half_negative)
273 bpf_slow_path_byte_neg:
275 NESTED(sk_load_byte_negative, (6 * SZREG), $r_sp)
276 bpf_negative_common(1)
279 END(sk_load_byte_negative)
283 addiu $r_ret, zero, 1