aboutsummaryrefslogtreecommitdiffstats
path: root/test
AgeCommit message (Expand)AuthorFilesLines
2018-06-08Implement DHCPv6 PD client (VPP-718, VPP-1050)Juraj Sloboda2-0/+493
2018-06-08Gratuitous ARP packet handlingNeale Ranns2-2/+104
2018-06-07DHCP Client DumpNeale Ranns2-6/+33
2018-05-30make test: VPP-1288 fix bogus sw_if_index valuesKlement Sekera1-8/+6
2018-05-28NAT44: code cleanup and refactor (VPP-1285)Matus Fabian1-136/+150
2018-05-27Fixes make test errors with clang compiler on aarch64Sirshak Das1-3/+3
2018-05-25bond: performance harvestingSteven1-11/+3
2018-05-25ARP proxy dumpsNeale Ranns2-7/+8
2018-05-25VPP-1277: IPIP - Copy TOS/TC from inner packet to outer.Ole Troan2-18/+22
2018-05-23make test: VPP-1288 fix from sw_if_index valuesKlement Sekera2-9/+6
2018-05-23VPP-1283: IPv6 PMTU missing MTU value in ICMP6 message.Ole Troan1-5/+11
2018-05-23VPP-1283: IPv4 PMTU missing MTU value in ICMP4 message.Ole Troan2-1/+213
2018-05-18IP table bind allowed only if table existsNeale Ranns2-1/+9
2018-05-18Rework kube-proxy into LB pluginHongjun Ni2-208/+70
2018-05-17NAT44: nat44_del_session and nat44_user_session_details API update (VPP-1271)Matus Fabian2-33/+79
2018-05-16make test: unify packet checksum verificationsKlement Sekera3-256/+151
2018-05-15No overlapping sub-nets on any interface in the same table/VRF (VPP-943)Neale Ranns2-1/+9
2018-05-14NAT44: delete closed TCP session (VPP-1274)Matus Fabian1-3/+3
2018-05-11make test: reorganize ipsec_ah test codeKlement Sekera1-191/+124
2018-05-10NAT44: sessions counters per user fix (VPP-1270)Matus Fabian1-0/+25
2018-05-09ipsec: support UDP encap/decap for NAT traversalKlement Sekera4-15/+276
2018-05-08NAT44: TCP connection close detection (VPP-1266)Matus Fabian1-44/+233
2018-05-07opensuse: OS_ID field content changed for SUSEMarco Varlese1-1/+1
2018-05-02Scapy; update to release 2.4.0Neale Ranns1-1/+1
2018-04-27IPv6 NS: use the mcast rewrite node to fill in the destination MACNeale Ranns1-1/+1
2018-04-27Move VOM to extras/vomDamjan Marion1-10/+36
2018-04-25GBPv6: NAT66 actions for GBPNeale Ranns1-58/+150
2018-04-24NAT44: one-armed NAT and identity mapping (VPP-1212)Matus Fabian1-0/+3
2018-04-19Add special Twice-NAT feature (VPP-1221)Juraj Sloboda2-96/+132
2018-04-18typo fix: UNKOWN -> UNKNOWNAndrey "Zed" Zaikin1-1/+1
2018-04-18Fix PPPoE test case issuesHongjun Ni2-42/+3
2018-04-17Add logging supportDamjan Marion2-2/+7
2018-04-17IP mcast: allow unicast address as a next-hopNeale Ranns3-8/+64
2018-04-17ACL based forwardingAndrew Yourtchenko3-0/+359
2018-04-17make test: ipsec test cleanupKlement Sekera2-13/+9
2018-04-15vhost: add vhost interface add/delete/dump API test cases to make testSteven3-0/+160
2018-04-13Revert "MTU: Setting of MTU on software interface (instead of hardware interf...Damjan Marion2-65/+7
2018-04-13NAT66: Do not translate if packet not aimed at outside interfaceJuraj Sloboda1-0/+23
2018-04-13MTU: Setting of MTU on software interface (instead of hardware interface)Ole Troan2-7/+65
2018-04-13GBP V2Neale Ranns3-185/+934
2018-04-13Enable check of VRF reset - IPv4Jan Gelety3-71/+122
2018-04-12VCL IOEvent external API callbackKeith Burns (alagalah)1-8/+6
2018-04-10test: Fix issues with new version of pycodestyle (VPP-1232)Chris Luke3-3/+5
2018-04-09jvpp: log error output of Java process on test failureMarek Gradzki1-3/+6
2018-04-09make test: fix failure on centosKlement Sekera1-1/+1
2018-04-03Makefile: Alter VPP_PYTHON_PREFIX for preloading depsEd Kern1-0/+2
2018-04-03reassembly: bug fixesKlement Sekera1-2/+1
2018-03-31make test: print a warning in case a core_pattern contains a filter programAndrew Yourtchenko3-0/+19
2018-03-29ip6: fix ip6-local urpf checkingFlorin Coras1-5/+3
2018-03-29tcp: fix fib index buffer taggingFlorin Coras1-19/+25
(cfi != 0) s = format (s, " cfi"); return s; } u8 * format_ethernet_header_with_length (u8 * s, va_list * args) { ethernet_pbb_header_packed_t *ph = va_arg (*args, ethernet_pbb_header_packed_t *); ethernet_max_header_t *m = (ethernet_max_header_t *) ph; u32 max_header_bytes = va_arg (*args, u32); ethernet_main_t *em = &ethernet_main; ethernet_header_t *e = &m->ethernet; ethernet_vlan_header_t *v; ethernet_type_t type = clib_net_to_host_u16 (e->type); ethernet_type_t vlan_type[ARRAY_LEN (m->vlan)]; u32 n_vlan = 0, i, header_bytes; u32 indent; while ((type == ETHERNET_TYPE_VLAN || type == ETHERNET_TYPE_DOT1AD || type == ETHERNET_TYPE_DOT1AH) && n_vlan < ARRAY_LEN (m->vlan)) { vlan_type[n_vlan] = type; if (type != ETHERNET_TYPE_DOT1AH) { v = m->vlan + n_vlan; type = clib_net_to_host_u16 (v->type); } n_vlan++; } header_bytes = sizeof (e[0]) + n_vlan * sizeof (v[0]); if (max_header_bytes != 0 && header_bytes > max_header_bytes) return format (s, "ethernet header truncated"); indent = format_get_indent (s); s = format (s, "%U: %U -> %U", format_ethernet_type, type, format_ethernet_address, e->src_address, format_ethernet_address, e->dst_address); if (type != ETHERNET_TYPE_DOT1AH) { for (i = 0; i < n_vlan; i++) { u32 v = clib_net_to_host_u16 (m->vlan[i].priority_cfi_and_id); if (*vlan_type == ETHERNET_TYPE_VLAN) s = format (s, " 802.1q vlan %U", format_ethernet_vlan_tci, v); else s = format (s, " 802.1ad vlan %U", format_ethernet_vlan_tci, v); } if (max_header_bytes != 0 && header_bytes < max_header_bytes) { ethernet_type_info_t *ti; vlib_node_t *node = 0; ti = ethernet_get_type_info (em, type); if (ti && ti->node_index != ~0) node = vlib_get_node (em->vlib_main, ti->node_index); if (node && node->format_buffer) s = format (s, "\n%U%U", format_white_space, indent, node->format_buffer, (void *) m + header_bytes, max_header_bytes - header_bytes); } } else { s = format (s, " %s b-tag %04X", (clib_net_to_host_u16 (ph->b_type) == ETHERNET_TYPE_DOT1AD) ? "802.1ad" : "", clib_net_to_host_u16 (ph->priority_dei_id)); s = format (s, " %s i-tag %08X", (clib_net_to_host_u16 (ph->i_type) == ETHERNET_TYPE_DOT1AH) ? "802.1ah" : "", clib_net_to_host_u32 (ph->priority_dei_uca_res_sid)); } return s; } u8 * format_ethernet_header (u8 * s, va_list * args) { ethernet_max_header_t *m = va_arg (*args, ethernet_max_header_t *); return format (s, "%U", format_ethernet_header_with_length, m, 0); } /* Parse X:X:X:X:X:X unix style ethernet address. */ static uword unformat_ethernet_address_unix (unformat_input_t * input, va_list * args) { u8 *result = va_arg (*args, u8 *); u32 i, a[6]; if (!unformat (input, "%_%x:%x:%x:%x:%x:%x%_", &a[0], &a[1], &a[2], &a[3], &a[4], &a[5])) return 0; /* Check range. */ for (i = 0; i < ARRAY_LEN (a); i++) if (a[i] >= (1 << 8)) return 0; for (i = 0; i < ARRAY_LEN (a); i++) result[i] = a[i]; return 1; } /* Parse X.X.X cisco style ethernet address. */ static uword unformat_ethernet_address_cisco (unformat_input_t * input, va_list * args) { u8 *result = va_arg (*args, u8 *); u32 i, a[3]; if (!unformat (input, "%_%x.%x.%x%_", &a[0], &a[1], &a[2])) return 0; /* Check range. */ for (i = 0; i < ARRAY_LEN (a); i++) if (a[i] >= (1 << 16)) return 0; result[0] = (a[0] >> 8) & 0xff; result[1] = (a[0] >> 0) & 0xff; result[2] = (a[1] >> 8) & 0xff; result[3] = (a[1] >> 0) & 0xff; result[4] = (a[2] >> 8) & 0xff; result[5] = (a[2] >> 0) & 0xff; return 1; } /* Parse ethernet address; accept either unix or style addresses. */ uword unformat_ethernet_address (unformat_input_t * input, va_list * args) { u8 *result = va_arg (*args, u8 *); return (unformat_user (input, unformat_ethernet_address_unix, result) || unformat_user (input, unformat_ethernet_address_cisco, result)); } uword unformat_mac_address (unformat_input_t * input, va_list * args) { return (unformat_ethernet_address (input, args)); } /* Returns ethernet type as an int in host byte order. */ uword unformat_ethernet_type_host_byte_order (unformat_input_t * input, va_list * args) { u16 *result = va_arg (*args, u16 *); ethernet_main_t *em = &ethernet_main; int type, i; /* Numeric type. */ if (unformat (input, "0x%x", &type) || unformat (input, "%d", &type)) { if (type >= (1 << 16)) return 0; *result = type; return 1; } /* Named type. */ if (unformat_user (input, unformat_vlib_number_by_name, em->type_info_by_name, &i)) { ethernet_type_info_t *ti = vec_elt_at_index (em->type_infos, i); *result = ti->type; return 1; } return 0; } uword unformat_ethernet_type_net_byte_order (unformat_input_t * input, va_list * args) { u16 *result = va_arg (*args, u16 *); if (!unformat_user (input, unformat_ethernet_type_host_byte_order, result)) return 0; *result = clib_host_to_net_u16 ((u16) * result); return 1; } uword unformat_ethernet_header (unformat_input_t * input, va_list * args) { u8 **result = va_arg (*args, u8 **); ethernet_max_header_t _m, *m = &_m; ethernet_header_t *e = &m->ethernet; u16 type; u32 n_vlan; if (!unformat (input, "%U: %U -> %U", unformat_ethernet_type_host_byte_order, &type, unformat_ethernet_address, &e->src_address, unformat_ethernet_address, &e->dst_address)) return 0; n_vlan = 0; while (unformat (input, "vlan")) { u32 id, priority; if (!unformat_user (input, unformat_vlib_number, &id) || id >= ETHERNET_N_VLAN) return 0; if (unformat (input, "priority %d", &priority)) { if (priority >= 8) return 0; id |= priority << 13; } if (unformat (input, "cfi")) id |= 1 << 12; /* Too many vlans given. */ if (n_vlan >= ARRAY_LEN (m->vlan)) return 0; m->vlan[n_vlan].priority_cfi_and_id = clib_host_to_net_u16 (id); n_vlan++; } if (n_vlan == 0) e->type = clib_host_to_net_u16 (type); else { int i; e->type = clib_host_to_net_u16 (ETHERNET_TYPE_VLAN); for (i = 0; i < n_vlan - 1; i++) m->vlan[i].type = clib_host_to_net_u16 (ETHERNET_TYPE_VLAN); m->vlan[n_vlan - 1].type = clib_host_to_net_u16 (type); } /* Add header to result. */ { void *p; u32 n_bytes = sizeof (e[0]) + n_vlan * sizeof (m->vlan[0]); vec_add2 (*result, p, n_bytes); clib_memcpy (p, m, n_bytes); } return 1; } /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */