File: test_xlate1.b

package info (click to toggle)
bpfcc 0.18.0%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 12,368 kB
  • sloc: ansic: 132,727; python: 36,226; cpp: 26,973; sh: 710; yacc: 525; makefile: 141; lex: 94
file content (75 lines) | stat: -rw-r--r-- 1,426 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// Copyright (c) PLUMgrid, Inc.
// Licensed under the Apache License, Version 2.0 (the "License")
// test for packet modification

#packed "false"

struct IPKey {
  u32 dip:32;
  u32 sip:32;
};
struct IPLeaf {
  u32 xdip:32;
  u32 xsip:32;
  u64 xlated_pkts:64;
};
Table<IPKey, IPLeaf, FIXED_MATCH, NONE> xlate(1024);

struct skbuff {
  u32 type:32;
};

u32 on_packet (struct skbuff *skb) {
  u32 ret:32 = 1;

  u32 orig_dip:32 = 0;
  u32 orig_sip:32 = 0;
  struct IPLeaf *xleaf;

  goto proto::ethernet;

  state proto::ethernet {
  }

  state proto::dot1q {
  }

  state proto::ip {
    orig_dip = $ip.dst;
    orig_sip = $ip.src;
    struct IPKey key = {.dip=orig_dip, .sip=orig_sip};
    xlate.lookup(key, xleaf) {};
    on_valid(xleaf) {
      incr_cksum(@ip.hchecksum, orig_dip, xleaf.xdip);
      incr_cksum(@ip.hchecksum, orig_sip, xleaf.xsip);
      // the below are equivalent
      pkt.rewrite_field($ip.dst, xleaf.xdip);
      $ip.src = xleaf.xsip;
      atomic_add(xleaf.xlated_pkts, 1);
    }
  }

  state proto::udp {
    on_valid(xleaf) {
      incr_cksum(@udp.crc, orig_dip, xleaf.xdip, 1);
      incr_cksum(@udp.crc, orig_sip, xleaf.xsip, 1);
    }
  }

  state proto::tcp {
    on_valid(xleaf) {
      incr_cksum(@tcp.cksum, orig_dip, xleaf.xdip, 1);
      incr_cksum(@tcp.cksum, orig_sip, xleaf.xsip, 1);
    }
  }

  state proto::vxlan {
  }

  state proto::gre {
  }

  state EOP {
    return ret;
  }
}