Coverage Report

Created: 2026-02-14 06:22

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/bloaty/third_party/capstone/arch/BPF/BPFDisassembler.c
Line
Count
Source
1
/* Capstone Disassembly Engine */
2
/* BPF Backend by david942j <david942j@gmail.com>, 2019 */
3
4
#ifdef CAPSTONE_HAS_BPF
5
6
#include <string.h>
7
#include <stddef.h> // offsetof macro
8
9
#include "BPFConstants.h"
10
#include "BPFDisassembler.h"
11
#include "BPFMapping.h"
12
#include "../../cs_priv.h"
13
14
static uint16_t read_u16(cs_struct *ud, const uint8_t *code)
15
0
{
16
0
  if (MODE_IS_BIG_ENDIAN(ud->mode))
17
0
    return (((uint16_t)code[0] << 8) | code[1]);
18
0
  else
19
0
    return (((uint16_t)code[1] << 8) | code[0]);
20
0
}
21
22
static uint32_t read_u32(cs_struct *ud, const uint8_t *code)
23
0
{
24
0
  if (MODE_IS_BIG_ENDIAN(ud->mode))
25
0
    return ((uint32_t)read_u16(ud, code) << 16) | read_u16(ud, code + 2);
26
0
  else
27
0
    return ((uint32_t)read_u16(ud, code + 2) << 16) | read_u16(ud, code);
28
0
}
29
30
///< Malloc bpf_internal, also checks if code_len is large enough.
31
static bpf_internal *alloc_bpf_internal(size_t code_len)
32
0
{
33
0
  bpf_internal *bpf;
34
35
0
  if (code_len < 8)
36
0
    return NULL;
37
0
  bpf = cs_mem_malloc(sizeof(bpf_internal));
38
0
  if (bpf == NULL)
39
0
    return NULL;
40
  /* default value */
41
0
  bpf->insn_size = 8;
42
0
  return bpf;
43
0
}
44
45
///< Fetch a cBPF structure from code
46
static bpf_internal* fetch_cbpf(cs_struct *ud, const uint8_t *code,
47
    size_t code_len)
48
0
{
49
0
  bpf_internal *bpf;
50
51
0
  bpf = alloc_bpf_internal(code_len);
52
0
  if (bpf == NULL)
53
0
    return NULL;
54
55
0
  bpf->op = read_u16(ud, code);
56
0
  bpf->jt = code[2];
57
0
  bpf->jf = code[3];
58
0
  bpf->k = read_u32(ud, code + 4);
59
0
  return bpf;
60
0
}
61
62
///< Fetch an eBPF structure from code
63
static bpf_internal* fetch_ebpf(cs_struct *ud, const uint8_t *code,
64
    size_t code_len)
65
0
{
66
0
  bpf_internal *bpf;
67
68
0
  bpf = alloc_bpf_internal(code_len);
69
0
  if (bpf == NULL)
70
0
    return NULL;
71
72
0
  bpf->op = (uint16_t)code[0];
73
0
  bpf->dst = code[1] & 0xf;
74
0
  bpf->src = (code[1] & 0xf0) >> 4;
75
76
  // eBPF has one 16-byte instruction: BPF_LD | BPF_DW | BPF_IMM,
77
  // in this case imm is combined with the next block's imm.
78
0
  if (bpf->op == (BPF_CLASS_LD | BPF_SIZE_DW | BPF_MODE_IMM)) {
79
0
    if (code_len < 16) {
80
0
      cs_mem_free(bpf);
81
0
      return NULL;
82
0
    }
83
0
    bpf->k = read_u32(ud, code + 4) | (((uint64_t)read_u32(ud, code + 12)) << 32);
84
0
    bpf->insn_size = 16;
85
0
  }
86
0
  else {
87
0
    bpf->offset = read_u16(ud, code + 2);
88
0
    bpf->k = read_u32(ud, code + 4);
89
0
  }
90
0
  return bpf;
91
0
}
92
93
0
#define CHECK_READABLE_REG(ud, reg) do { \
94
0
    if (! ((reg) >= BPF_REG_R0 && (reg) <= BPF_REG_R10)) \
95
0
      return false; \
96
0
  } while (0)
97
98
0
#define CHECK_WRITABLE_REG(ud, reg) do { \
99
0
    if (! ((reg) >= BPF_REG_R0 && (reg) < BPF_REG_R10)) \
100
0
      return false; \
101
0
  } while (0)
102
103
0
#define CHECK_READABLE_AND_PUSH(ud, MI, r) do { \
104
0
    CHECK_READABLE_REG(ud, r + BPF_REG_R0); \
105
0
    MCOperand_CreateReg0(MI, r + BPF_REG_R0); \
106
0
  } while (0)
107
108
0
#define CHECK_WRITABLE_AND_PUSH(ud, MI, r) do { \
109
0
    CHECK_WRITABLE_REG(ud, r + BPF_REG_R0); \
110
0
    MCOperand_CreateReg0(MI, r + BPF_REG_R0); \
111
0
  } while (0)
112
113
static bool decodeLoad(cs_struct *ud, MCInst *MI, bpf_internal *bpf)
114
0
{
115
0
  if (!EBPF_MODE(ud)) {
116
    /*
117
     *  +-----+-----------+--------------------+
118
     *  | ldb |    [k]    |       [x+k]        |
119
     *  | ldh |    [k]    |       [x+k]        |
120
     *  +-----+-----------+--------------------+
121
     */
122
0
    if (BPF_SIZE(bpf->op) == BPF_SIZE_DW)
123
0
      return false;
124
0
    if (BPF_SIZE(bpf->op) == BPF_SIZE_B || BPF_SIZE(bpf->op) == BPF_SIZE_H) {
125
      /* no ldx */
126
0
      if (BPF_CLASS(bpf->op) != BPF_CLASS_LD)
127
0
        return false;
128
      /* can only be BPF_ABS and BPF_IND */
129
0
      if (BPF_MODE(bpf->op) == BPF_MODE_ABS) {
130
0
        MCOperand_CreateImm0(MI, bpf->k);
131
0
        return true;
132
0
      }
133
0
      else if (BPF_MODE(bpf->op) == BPF_MODE_IND) {
134
0
        MCOperand_CreateReg0(MI, BPF_REG_X);
135
0
        MCOperand_CreateImm0(MI, bpf->k);
136
0
        return true;
137
0
      }
138
0
      return false;
139
0
    }
140
    /*
141
     *  +-----+----+------+------+-----+-------+
142
     *  | ld  | #k | #len | M[k] | [k] | [x+k] |
143
     *  +-----+----+------+------+-----+-------+
144
     *  | ldx | #k | #len | M[k] | 4*([k]&0xf) |
145
     *  +-----+----+------+------+-------------+
146
     */
147
0
    switch (BPF_MODE(bpf->op)) {
148
0
    default:
149
0
      break;
150
0
    case BPF_MODE_IMM:
151
0
      MCOperand_CreateImm0(MI, bpf->k);
152
0
      return true;
153
0
    case BPF_MODE_LEN:
154
0
      return true;
155
0
    case BPF_MODE_MEM:
156
0
      MCOperand_CreateImm0(MI, bpf->k);
157
0
      return true;
158
0
    }
159
0
    if (BPF_CLASS(bpf->op) == BPF_CLASS_LD) {
160
0
      if (BPF_MODE(bpf->op) == BPF_MODE_ABS) {
161
0
        MCOperand_CreateImm0(MI, bpf->k);
162
0
        return true;
163
0
      }
164
0
      else if (BPF_MODE(bpf->op) == BPF_MODE_IND) {
165
0
        MCOperand_CreateReg0(MI, BPF_REG_X);
166
0
        MCOperand_CreateImm0(MI, bpf->k);
167
0
        return true;
168
0
      }
169
0
    }
170
0
    else { /* LDX */
171
0
      if (BPF_MODE(bpf->op) == BPF_MODE_MSH) {
172
0
        MCOperand_CreateImm0(MI, bpf->k);
173
0
        return true;
174
0
      }
175
0
    }
176
0
    return false;
177
0
  }
178
179
  /* eBPF mode */
180
  /*
181
   * - IMM: lddw dst, imm64
182
   * - ABS: ld{w,h,b,dw} [k]
183
   * - IND: ld{w,h,b,dw} [src+k]
184
   * - MEM: ldx{w,h,b,dw} dst, [src+off]
185
   */
186
0
  if (BPF_CLASS(bpf->op) == BPF_CLASS_LD) {
187
0
    switch (BPF_MODE(bpf->op)) {
188
0
    case BPF_MODE_IMM:
189
0
      if (bpf->op != (BPF_CLASS_LD | BPF_SIZE_DW | BPF_MODE_IMM))
190
0
        return false;
191
0
      CHECK_WRITABLE_AND_PUSH(ud, MI, bpf->dst);
192
0
      MCOperand_CreateImm0(MI, bpf->k);
193
0
      return true;
194
0
    case BPF_MODE_ABS:
195
0
      MCOperand_CreateImm0(MI, bpf->k);
196
0
      return true;
197
0
    case BPF_MODE_IND:
198
0
      CHECK_READABLE_AND_PUSH(ud, MI, bpf->src);
199
0
      MCOperand_CreateImm0(MI, bpf->k);
200
0
      return true;
201
0
    }
202
0
    return false;
203
204
0
  }
205
  /* LDX */
206
0
  if (BPF_MODE(bpf->op) == BPF_MODE_MEM) {
207
0
    CHECK_WRITABLE_AND_PUSH(ud, MI, bpf->dst);
208
0
    CHECK_READABLE_AND_PUSH(ud, MI, bpf->src);
209
0
    MCOperand_CreateImm0(MI, bpf->offset);
210
0
    return true;
211
0
  }
212
0
  return false;
213
0
}
214
215
static bool decodeStore(cs_struct *ud, MCInst *MI, bpf_internal *bpf)
216
0
{
217
  /* in cBPF, only BPF_ST* | BPF_MEM | BPF_W is valid
218
   * while in eBPF:
219
   * - BPF_STX | BPF_XADD | BPF_{W,DW}
220
   * - BPF_ST* | BPF_MEM | BPF_{W,H,B,DW}
221
   * are valid
222
   */
223
0
  if (!EBPF_MODE(ud)) {
224
    /* can only store to M[] */
225
0
    if (bpf->op != (BPF_CLASS(bpf->op) | BPF_MODE_MEM | BPF_SIZE_W))
226
0
      return false;
227
0
    MCOperand_CreateImm0(MI, bpf->k);
228
0
    return true;
229
0
  }
230
231
  /* eBPF */
232
233
0
  if (BPF_MODE(bpf->op) == BPF_MODE_XADD) {
234
0
    if (BPF_CLASS(bpf->op) != BPF_CLASS_STX)
235
0
      return false;
236
0
    if (BPF_SIZE(bpf->op) != BPF_SIZE_W && BPF_SIZE(bpf->op) != BPF_SIZE_DW)
237
0
      return false;
238
    /* xadd [dst + off], src */
239
0
    CHECK_READABLE_AND_PUSH(ud, MI, bpf->dst);
240
0
    MCOperand_CreateImm0(MI, bpf->offset);
241
0
    CHECK_READABLE_AND_PUSH(ud, MI, bpf->src);
242
0
    return true;
243
0
  }
244
245
0
  if (BPF_MODE(bpf->op) != BPF_MODE_MEM)
246
0
    return false;
247
248
  /* st [dst + off], src */
249
0
  CHECK_READABLE_AND_PUSH(ud, MI, bpf->dst);
250
0
  MCOperand_CreateImm0(MI, bpf->offset);
251
0
  if (BPF_CLASS(bpf->op) == BPF_CLASS_ST)
252
0
    MCOperand_CreateImm0(MI, bpf->k);
253
0
  else
254
0
    CHECK_READABLE_AND_PUSH(ud, MI, bpf->src);
255
0
  return true;
256
0
}
257
258
static bool decodeALU(cs_struct *ud, MCInst *MI, bpf_internal *bpf)
259
0
{
260
  /* Set MI->Operands */
261
262
  /* cBPF */
263
0
  if (!EBPF_MODE(ud)) {
264
0
    if (BPF_OP(bpf->op) > BPF_ALU_XOR)
265
0
      return false;
266
    /* cBPF's NEG has no operands */
267
0
    if (BPF_OP(bpf->op) == BPF_ALU_NEG)
268
0
      return true;
269
0
    if (BPF_SRC(bpf->op) == BPF_SRC_K)
270
0
      MCOperand_CreateImm0(MI, bpf->k);
271
0
    else /* BPF_SRC_X */
272
0
      MCOperand_CreateReg0(MI, BPF_REG_X);
273
0
    return true;
274
0
  }
275
276
  /* eBPF */
277
278
0
  if (BPF_OP(bpf->op) > BPF_ALU_END)
279
0
    return false;
280
  /* ALU64 class doesn't have ENDian */
281
  /* ENDian's imm must be one of 16, 32, 64 */
282
0
  if (BPF_OP(bpf->op) == BPF_ALU_END) {
283
0
    if (BPF_CLASS(bpf->op) == BPF_CLASS_ALU64)
284
0
      return false;
285
0
    if (bpf->k != 16 && bpf->k != 32 && bpf->k != 64)
286
0
      return false;
287
0
  }
288
289
  /* - op dst, imm
290
   * - op dst, src
291
   * - neg dst
292
   * - le<imm> dst
293
   */
294
  /* every ALU instructions have dst op */
295
0
  CHECK_WRITABLE_AND_PUSH(ud, MI, bpf->dst);
296
297
  /* special cases */
298
0
  if (BPF_OP(bpf->op) == BPF_ALU_NEG)
299
0
    return true;
300
0
  if (BPF_OP(bpf->op) == BPF_ALU_END) {
301
    /* bpf->k must be one of 16, 32, 64 */
302
0
    MCInst_setOpcode(MI, MCInst_getOpcode(MI) | ((uint32_t)bpf->k << 4));
303
0
    return true;
304
0
  }
305
306
  /* normal cases */
307
0
  if (BPF_SRC(bpf->op) == BPF_SRC_K) {
308
0
    MCOperand_CreateImm0(MI, bpf->k);
309
0
  }
310
0
  else { /* BPF_SRC_X */
311
0
    CHECK_READABLE_AND_PUSH(ud, MI, bpf->src);
312
0
  }
313
0
  return true;
314
0
}
315
316
static bool decodeJump(cs_struct *ud, MCInst *MI, bpf_internal *bpf)
317
0
{
318
  /* cBPF and eBPF are very different in class jump */
319
0
  if (!EBPF_MODE(ud)) {
320
0
    if (BPF_OP(bpf->op) > BPF_JUMP_JSET)
321
0
      return false;
322
323
    /* ja is a special case of jumps */
324
0
    if (BPF_OP(bpf->op) == BPF_JUMP_JA) {
325
0
      MCOperand_CreateImm0(MI, bpf->k);
326
0
      return true;
327
0
    }
328
329
0
    if (BPF_SRC(bpf->op) == BPF_SRC_K)
330
0
      MCOperand_CreateImm0(MI, bpf->k);
331
0
    else /* BPF_SRC_X */
332
0
      MCOperand_CreateReg0(MI, BPF_REG_X);
333
0
    MCOperand_CreateImm0(MI, bpf->jt);
334
0
    MCOperand_CreateImm0(MI, bpf->jf);
335
0
  }
336
0
  else {
337
0
    if (BPF_OP(bpf->op) > BPF_JUMP_JSLE)
338
0
      return false;
339
340
    /* No operands for exit */
341
0
    if (BPF_OP(bpf->op) == BPF_JUMP_EXIT)
342
0
      return bpf->op == (BPF_CLASS_JMP | BPF_JUMP_EXIT);
343
0
    if (BPF_OP(bpf->op) == BPF_JUMP_CALL) {
344
0
      if (bpf->op == (BPF_CLASS_JMP | BPF_JUMP_CALL)) {
345
0
        MCOperand_CreateImm0(MI, bpf->k);
346
0
        return true;
347
0
      }
348
0
      if (bpf->op == (BPF_CLASS_JMP | BPF_JUMP_CALL | BPF_SRC_X)) {
349
0
        CHECK_READABLE_AND_PUSH(ud, MI, bpf->k);
350
0
        return true;
351
0
      }
352
0
      return false;
353
0
    }
354
355
    /* ja is a special case of jumps */
356
0
    if (BPF_OP(bpf->op) == BPF_JUMP_JA) {
357
0
      if (BPF_SRC(bpf->op) != BPF_SRC_K)
358
0
        return false;
359
0
      MCOperand_CreateImm0(MI, bpf->offset);
360
0
      return true;
361
0
    }
362
363
    /* <j>  dst, src, +off */
364
0
    CHECK_READABLE_AND_PUSH(ud, MI, bpf->dst);
365
0
    if (BPF_SRC(bpf->op) == BPF_SRC_K)
366
0
      MCOperand_CreateImm0(MI, bpf->k);
367
0
    else
368
0
      CHECK_READABLE_AND_PUSH(ud, MI, bpf->src);
369
0
    MCOperand_CreateImm0(MI, bpf->offset);
370
0
  }
371
0
  return true;
372
0
}
373
374
static bool decodeReturn(cs_struct *ud, MCInst *MI, bpf_internal *bpf)
375
0
{
376
  /* Here only handles the BPF_RET class in cBPF */
377
0
  switch (BPF_RVAL(bpf->op)) {
378
0
  case BPF_SRC_K:
379
0
    MCOperand_CreateImm0(MI, bpf->k);
380
0
    return true;
381
0
  case BPF_SRC_X:
382
0
    MCOperand_CreateReg0(MI, BPF_REG_X);
383
0
    return true;
384
0
  case BPF_SRC_A:
385
0
    MCOperand_CreateReg0(MI, BPF_REG_A);
386
0
    return true;
387
0
  }
388
0
  return false;
389
0
}
390
391
static bool decodeMISC(cs_struct *ud, MCInst *MI, bpf_internal *bpf)
392
0
{
393
0
  uint16_t op = bpf->op ^ BPF_CLASS_MISC;
394
0
  return op == BPF_MISCOP_TAX || op == BPF_MISCOP_TXA;
395
0
}
396
397
///< 1. Check if the instruction is valid
398
///< 2. Set MI->opcode
399
///< 3. Set MI->Operands
400
static bool getInstruction(cs_struct *ud, MCInst *MI, bpf_internal *bpf)
401
0
{
402
0
  cs_detail *detail;
403
404
0
  detail = MI->flat_insn->detail;
405
  // initialize detail
406
0
  if (detail) {
407
0
    memset(detail, 0, offsetof(cs_detail, bpf) + sizeof(cs_bpf));
408
0
  }
409
410
0
  MCInst_clear(MI);
411
0
  MCInst_setOpcode(MI, bpf->op);
412
413
0
  switch (BPF_CLASS(bpf->op)) {
414
0
  default: /* should never happen */
415
0
    return false;
416
0
  case BPF_CLASS_LD:
417
0
  case BPF_CLASS_LDX:
418
0
    return decodeLoad(ud, MI, bpf);
419
0
  case BPF_CLASS_ST:
420
0
  case BPF_CLASS_STX:
421
0
    return decodeStore(ud, MI, bpf);
422
0
  case BPF_CLASS_ALU:
423
0
    return decodeALU(ud, MI, bpf);
424
0
  case BPF_CLASS_JMP:
425
0
    return decodeJump(ud, MI, bpf);
426
0
  case BPF_CLASS_RET:
427
    /* eBPF doesn't have this class */
428
0
    if (EBPF_MODE(ud))
429
0
      return false;
430
0
    return decodeReturn(ud, MI, bpf);
431
0
  case BPF_CLASS_MISC:
432
  /* case BPF_CLASS_ALU64: */
433
0
    if (EBPF_MODE(ud))
434
0
      return decodeALU(ud, MI, bpf);
435
0
    else
436
0
      return decodeMISC(ud, MI, bpf);
437
0
  }
438
0
}
439
440
bool BPF_getInstruction(csh ud, const uint8_t *code, size_t code_len,
441
    MCInst *instr, uint16_t *size, uint64_t address, void *info)
442
0
{
443
0
  cs_struct *cs;
444
0
  bpf_internal *bpf;
445
446
0
  cs = (cs_struct*)ud;
447
0
  if (EBPF_MODE(cs))
448
0
    bpf = fetch_ebpf(cs, code, code_len);
449
0
  else
450
0
    bpf = fetch_cbpf(cs, code, code_len);
451
0
  if (bpf == NULL)
452
0
    return false;
453
0
  if (!getInstruction(cs, instr, bpf)) {
454
0
    cs_mem_free(bpf);
455
0
    return false;
456
0
  }
457
458
0
  *size = bpf->insn_size;
459
0
  cs_mem_free(bpf);
460
461
  return true;
462
0
}
463
464
#endif