LCOV - code coverage report
Current view: top level - bpfilter/cgen/matcher - udp.c (source / functions) Coverage Total Hit
Test: lcov.out Lines: 0.0 % 26 0
Test Date: 2025-02-26 17:59:59 Functions: 0.0 % 2 0

            Line data    Source code
       1              : /* SPDX-License-Identifier: GPL-2.0-only */
       2              : /*
       3              :  * Copyright (c) 2022 Meta Platforms, Inc. and affiliates.
       4              :  */
       5              : 
       6              : #include "bpfilter/cgen/matcher/udp.h"
       7              : 
       8              : #include <linux/bpf.h>
       9              : #include <linux/bpf_common.h>
      10              : #include <linux/in.h> // NOLINT
      11              : #include <linux/udp.h>
      12              : 
      13              : #include <endian.h>
      14              : #include <errno.h>
      15              : #include <stddef.h>
      16              : #include <stdint.h>
      17              : 
      18              : #include "bpfilter/cgen/program.h"
      19              : #include "core/logger.h"
      20              : #include "core/matcher.h"
      21              : 
      22              : #include "external/filter.h"
      23              : 
      24            0 : static int _bf_matcher_generate_udp_port(struct bf_program *program,
      25              :                                          const struct bf_matcher *matcher)
      26              : {
      27              :     uint16_t *port = (uint16_t *)&matcher->payload;
      28            0 :     size_t offset = matcher->type == BF_MATCHER_UDP_SPORT ?
      29            0 :                         offsetof(struct udphdr, source) :
      30              :                         offsetof(struct udphdr, dest);
      31              : 
      32            0 :     EMIT(program, BPF_LDX_MEM(BPF_H, BPF_REG_1, BPF_REG_6, offset));
      33              : 
      34            0 :     switch (matcher->op) {
      35            0 :     case BF_MATCHER_EQ:
      36            0 :         EMIT_FIXUP_JMP_NEXT_RULE(
      37              :             program, BPF_JMP_IMM(BPF_JNE, BPF_REG_1, htobe16(*port), 0));
      38            0 :         break;
      39            0 :     case BF_MATCHER_NE:
      40            0 :         EMIT_FIXUP_JMP_NEXT_RULE(
      41              :             program, BPF_JMP_IMM(BPF_JEQ, BPF_REG_1, htobe16(*port), 0));
      42            0 :         break;
      43            0 :     case BF_MATCHER_RANGE:
      44            0 :         EMIT_FIXUP_JMP_NEXT_RULE(
      45              :             program, BPF_JMP_IMM(BPF_JLT, BPF_REG_1, htobe16(port[0]), 0));
      46            0 :         EMIT_FIXUP_JMP_NEXT_RULE(
      47              :             program, BPF_JMP_IMM(BPF_JGT, BPF_REG_1, htobe16(port[1]), 0));
      48            0 :         break;
      49            0 :     default:
      50            0 :         return bf_err_r(-EINVAL, "unknown matcher operator '%s' (%d)",
      51              :                         bf_matcher_op_to_str(matcher->op), matcher->op);
      52              :     }
      53              : 
      54              :     return 0;
      55              : }
      56              : 
      57            0 : int bf_matcher_generate_udp(struct bf_program *program,
      58              :                             const struct bf_matcher *matcher)
      59              : {
      60              :     int r;
      61              : 
      62            0 :     EMIT_FIXUP_JMP_NEXT_RULE(program,
      63              :                              BPF_JMP_IMM(BPF_JNE, BPF_REG_8, IPPROTO_UDP, 0));
      64            0 :     EMIT(program,
      65              :          BPF_LDX_MEM(BPF_DW, BPF_REG_6, BPF_REG_10, BF_PROG_CTX_OFF(l4_hdr)));
      66              : 
      67            0 :     switch (matcher->type) {
      68            0 :     case BF_MATCHER_UDP_SPORT:
      69              :     case BF_MATCHER_UDP_DPORT:
      70            0 :         r = _bf_matcher_generate_udp_port(program, matcher);
      71              :         break;
      72            0 :     default:
      73            0 :         return bf_err_r(-EINVAL, "unknown matcher type %d", matcher->type);
      74              :     };
      75              : 
      76            0 :     return r;
      77              : }
        

Generated by: LCOV version 2.0-1