Commit Graph

736 Commits

Author SHA1 Message Date
Nico Schottelius f155bb5499 Try to find the reason for yet-another-compiler-bug 2019-07-25 14:41:42 +02:00
Nico Schottelius 7bba816f2c v4 if next to v6 if, not to nat64 2019-07-25 14:40:20 +02:00
Nico Schottelius f80ecc1d68 [netpfga] remove icmp support
No payload checksumming...
2019-07-25 14:35:37 +02:00
Nico Schottelius 7b9ecc0038 Merge branch 'master' of gitlab.ethz.ch:nicosc/master-thesis 2019-07-25 14:34:48 +02:00
Nico Schottelius f60b61288f +} 2019-07-25 14:34:41 +02:00
Nico Schottelius d6766422d5 Merge branch 'master' of gitlab.ethz.ch:nicosc/master-thesis 2019-07-25 14:32:18 +02:00
Nico Schottelius 51cbbb6a73 +6.4 log 2019-07-25 14:32:13 +02:00
Nico Schottelius f97a41689f Merge branch 'master' of gitlab.ethz.ch:nicosc/master-thesis 2019-07-25 14:31:55 +02:00
Nico Schottelius 7b6e853cc6 +log 2019-07-25 14:31:47 +02:00
Nico Schottelius 7bbee9ffa2 [netfpga] phase in ipv4 side of the code 2019-07-25 14:31:23 +02:00
Nico Schottelius 6003d240c6 [netpfga] add all broken defines 2019-07-24 23:51:19 +02:00
Nico Schottelius 5478e9fad7 Begin to write defines for netpfga instead of actions 2019-07-24 23:45:40 +02:00
Nico Schottelius a3dd7ee106 ++log 2019-07-24 23:33:09 +02:00
Nico Schottelius fa28b46285 +logs 2019-07-24 23:30:57 +02:00
Nico Schottelius 36e374737c Really, really ugly hack to get the thing compile again
REALLY ugly, but

works.
2019-07-24 23:28:05 +02:00
Nico Schottelius 28f985d9ce Commit broken in between state 2019-07-24 23:22:14 +02:00
Nico Schottelius c3f540795b [netpfga] document broken if statement case 2019-07-24 22:59:13 +02:00
Nico Schottelius 8c94c1ac09 [netpfga] Fix default actions / cannot have arguments 2019-07-24 22:52:23 +02:00
Nico Schottelius dc7d78252e Merge full IPv6 handling code from BMV2 side 2019-07-24 22:48:21 +02:00
Nico Schottelius 6b176fdc06 table size up, down, up...
Exact matches don't like 63

actions_nat64_generic.p4(173): error: table size too small for match_type(EM): 63 < 64
        size = 63;
               ^^
actions_nat64_generic.p4(173): error: could not not map table size size
        size = 63;
        ^^^^
2019-07-24 22:42:05 +02:00
Nico Schottelius 0f12752a02 tMerge branch 'master' of gitlab.ethz.ch:nicosc/master-thesis 2019-07-24 22:40:09 +02:00
Nico Schottelius a055f55c8d ++notes 2019-07-24 22:39:59 +02:00
Nico Schottelius 4afbf053af [netpfga] change table key to exact instead of LPM
Known bug of netpfga not correctly supporting LPM. Current bug
might be triggered by it:
2019-07-24 22:38:55 +02:00
Nico Schottelius 0e49182647 Merge branch 'master' of gitlab.ethz.ch:nicosc/master-thesis 2019-07-24 22:34:44 +02:00
Nico Schottelius d42259a85c +log 2019-07-24 22:34:34 +02:00
Nico Schottelius 9e6bb893ac [netpfga] remove ARP support
Due to

minip4_solution.p4(35)
parser RealParser(
       ^^^^^^^^^^
error: table match_types are not the same
actions_arp.p4(35): error: could not map table key(s) KeyElement
            hdr.arp.dst_ipv4_addr: lpm;
            ^^^^^^^^^^^^^^^^^^^^^
Makefile:34: recipe for target 'all' failed
make[1]: *** [all] Error 1

caused by

    table v4_arp {
        key = {
            hdr.ethernet.dst_addr: exact;
            hdr.arp.opcode: exact;
            hdr.arp.dst_ipv4_addr: lpm;
        }
2019-07-24 22:27:36 +02:00
Nico Schottelius 5dcb25a8f2 Fix mis-replacement 2019-07-24 13:22:28 +02:00
Nico Schottelius b88108fd56 Merge branch 'master' of gitlab.ethz.ch:nicosc/master-thesis 2019-07-24 13:21:06 +02:00
Nico Schottelius 306d52176f Set table size to 2^n -1 for everything
Motivated by v6.1 error:

make[1]: Entering directory '/home/nico/projects/P4-NetFPGA/contrib-projects/sume-sdnet-switch/projects/minip4/src'
p4c-sdnet -o minip4.sdnet --sdnet_info .sdnet_switch_info.dat minip4_solution.p4
actions_egress.p4(52): warning: Table v6_networks is not used; removing
table v6_networks {
      ^^^^^^^^^^^
actions_egress.p4(69): warning: Table v4_networks is not used; removing
table v4_networks {
      ^^^^^^^^^^^
actions_nat64_generic.p4(174): warning: Table nat46 is not used; removing
    table nat46 {
          ^^^^^
minip4_solution.p4(38): [--Wwarn=uninitialized_out_param] warning: out parameter meta may be uninitialized when RealParser terminates
    out metadata meta,
                 ^^^^
minip4_solution.p4(35)
parser RealParser(
       ^^^^^^^^^^
error: LPM table size should be 2^n - 1
actions_nat64_generic.p4(169): error: could not not map table size size
        size = 64;
        ^^^^
error: table match_types are not the same
actions_arp.p4(35): error: could not map table key(s) KeyElement
            hdr.arp.dst_ipv4_addr: lpm;
            ^^^^^^^^^^^^^^^^^^^^^
error: LPM table size should be 2^n - 1
actions_arp.p4(55): error: could not not map table size size
        size = 64;
        ^^^^
Makefile:34: recipe for target 'all' failed
make[1]: *** [all] Error 1
make[1]: Leaving directory '/home/nico/projects/P4-NetFPGA/contrib-projects/sume-sdnet-switch/projects/minip4/src'
Makefile:31: recipe for target 'frontend' failed
make: *** [frontend] Error 2
nico@nsg-System:~/master-thesis/netpfga/log$
2019-07-24 13:20:35 +02:00
Nico Schottelius c028bc83d1 Merge branch 'master' of gitlab.ethz.ch:nicosc/master-thesis 2019-07-24 13:18:23 +02:00
Nico Schottelius 91ec194b78 +arp in netpfga 2019-07-24 13:17:56 +02:00
Nico Schottelius 5552267824 Merge branch 'master' of gitlab.ethz.ch:nicosc/master-thesis 2019-07-24 13:16:14 +02:00
Nico Schottelius 1b338de051 success log of subcontrol 2019-07-24 13:15:44 +02:00
Nico Schottelius ee0d500355 [netpfga] phase in first applied tables/nat64 code 2019-07-24 13:08:02 +02:00
Nico Schottelius 49e1f511b0 Integrate existing headers 2019-07-24 12:15:26 +02:00
Nico Schottelius 1177008608 logfiles, cleanup 2019-07-24 12:15:11 +02:00
Nico Schottelius ad8988bb41 Try to add real headers 2019-07-24 12:01:47 +02:00
Nico Schottelius 13ce721862 Include settings into egress for table sizes 2019-07-24 11:57:57 +02:00
Nico Schottelius 6f961db35f -typo 2019-07-24 11:57:16 +02:00
Nico Schottelius 62d5816d9d Merge controller/egress
As they are interdependent
2019-07-24 11:56:27 +02:00
Nico Schottelius 3559637b56 --typo 2019-07-24 11:52:42 +02:00
Nico Schottelius 94e06be245 [netpfga] include UNUSED nat64 actions and tables
Will probably be removed, but need to check whether it still compiles.
2019-07-24 11:45:37 +02:00
Nico Schottelius 5671e28fcd Merge branch 'master' of gitlab.ethz.ch:nicosc/master-thesis 2019-07-24 11:22:56 +02:00
Nico Schottelius 327d0b70f9 Introduce sub-control for renaming variables 2019-07-24 11:22:32 +02:00
Nico Schottelius 05008b5c97 Merge branch 'master' of gitlab.ethz.ch:nicosc/master-thesis 2019-07-24 10:14:33 +02:00
Nico Schottelius dd42ae30f2 proof that rename with 5.5 fails 2019-07-24 10:09:38 +02:00
Nico Schottelius 89161e260e Accept in sub-parser 2019-07-24 09:57:16 +02:00
Nico Schottelius 4eabf8cc38 state name change 2019-07-24 09:53:13 +02:00
Nico Schottelius 850ebb8f0d ----typo 2019-07-24 09:52:02 +02:00
Nico Schottelius e33830203a --typo 2019-07-24 09:51:29 +02:00