summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Expand)AuthorFilesLines
2019-09-13session: add session enable option in config fileNathan Skrzypczak1-0/+2
2019-09-13hsa: Fix QUIC sessions count calculationAloys Augustin1-3/+1
2019-09-12tcp: cleanup scoreboard after recoveryFlorin Coras1-0/+7
2019-09-12devices: af_packet API cleanupJakub Grajciar3-24/+29
2019-09-12map: fix non-null-terminated C-stringBenoît Ganne1-3/+4
2019-09-12dpdk: fix null-termination of stringsElias Rudberg1-0/+3
2019-09-12hsa: fix memory management bugsBenoît Ganne2-5/+9
2019-09-12quic: fix use-after-freeBenoît Ganne1-1/+6
2019-09-11misc: bond_create is broken for custom dump printSteven Luong1-2/+2
2019-09-11quic: fix non-null terminated hostname stringBenoît Ganne1-9/+5
2019-09-11ip: apply dual loop unrolling in ip4_inputLijian.Zhang1-0/+68
2019-09-11ip: apply dual loop unrolling in ip4_rewriteLijian.Zhang1-0/+131
2019-09-11dpdk: apply dual loop unrolling in DPDK TXLijian.Zhang1-0/+57
2019-09-11memif: fix zero-copy arg overwriteJakub Grajciar1-3/+0
2019-09-11bonding: API cleanupJakub Grajciar3-37/+60
2019-09-11tcp: handle sack renegingFlorin Coras4-135/+203
2019-09-11build: fix running error with vmxnet3_test_plugin.sojialv011-10/+4
2019-09-10tcp: enable gso in tcp hoststackSimon Zhang6-3/+89
2019-09-10misc: clean up "pcap [rx|tx] trace" debug CLIDave Barach3-169/+162
2019-09-10session: fix session filter rangeFlorin Coras1-1/+1
2019-09-10tcp: validate connections in outputFlorin Coras1-9/+46
2019-09-10misc: fix shebang with missing envNathan Skrzypczak2-2/+2
2019-09-10papi: let async calls return contextVratko Polak1-1/+6
2019-09-09misc: fix coverity warning in the oddbuf pluginDave Barach9-134/+21
2019-09-09memif: API cleanupJakub Grajciar6-67/+122
2019-09-07vlib: clean up the "pcap dispatch trace" debug CLIDave Barach2-138/+183
2019-09-07ip: fix udp/tcp checksum corner casesDave Barach12-5/+1035
2019-09-06ikev2: fix crash during IKE SA Init exchangeFilip Tehlar1-6/+1
2019-09-06bonding: add weight support for active-backup modeSteven Luong6-88/+327
2019-09-06quic: fix server opening stream immediatelyAloys Augustin2-4/+19
2019-09-06tap: revert clean-up when linux will delete the tap interfaceMohsin Kazmi2-43/+0
2019-09-05build: fix unsupported CMake comparison operationjialv011-1/+1
2019-09-05dpdk: fix extended statsFilip Tehlar1-1/+1
2019-09-04bfd: API cleanupJakub Grajciar2-84/+66
2019-09-04stats: add /if/<n>/<n>/state for lacp interface stateSteven Luong4-3/+107
2019-09-04memif: always enable zero-copy when creating memif using APIJakub Grajciar1-0/+3
2019-09-04session: improve cliFlorin Coras7-148/+348
2019-09-04tcp: cc algos handle cwnd on congestion signalFlorin Coras3-12/+11
2019-09-04ethernet: move dmac filtering to inline functionMatthew Smith1-56/+63
2019-09-04avf: reduce default ITR intervalDamjan Marion1-1/+1
2019-09-04api: memclnt api use string type.Ole Troan4-12/+12
2019-09-04session: avoid bihash list for session tablesFlorin Coras1-12/+38
2019-09-03ethernet: fix dmac check avx2 loop conditionMatthew Smith1-1/+1
2019-09-03api: enforce vla is last and fixed string typeOle Troan20-268/+266
2019-09-03stats: memory leak with per-node-counters onOle Troan1-0/+3
2019-09-03gbp: fix set_mac() in unit testsBenoît Ganne1-6/+2
2019-09-03vppinfra: add bihash_init2Dave Barach2-20/+53
2019-09-03tap: fix tap interface not working on Arm issueLijian.Zhang3-2/+13
2019-09-03tcp: send rwnd update only if wnd is large enoughFlorin Coras3-7/+15
2019-09-02quic: disable quic plugin by defaultAloys Augustin2-0/+5
>; } rv = lb_conf((ip4_address_t *)&mp->ip4_src_address, (ip6_address_t *)&mp->ip6_src_address, mp->sticky_buckets_per_core, mp->flow_timeout); REPLY_MACRO (VL_API_LB_CONF_REPLY); } static void *vl_api_lb_conf_t_print (vl_api_lb_conf_t *mp, void * handle) { u8 * s; s = format (0, "SCRIPT: lb_conf "); s = format (s, "%U ", format_ip4_address, (ip4_address_t *)&mp->ip4_src_address); s = format (s, "%U ", format_ip6_address, (ip6_address_t *)&mp->ip6_src_address); s = format (s, "%u ", mp->sticky_buckets_per_core); s = format (s, "%u ", mp->flow_timeout); FINISH; } static void vl_api_lb_add_del_vip_t_handler (vl_api_lb_add_del_vip_t * mp) { lb_main_t *lbm = &lb_main; vl_api_lb_conf_reply_t * rmp; int rv = 0; lb_vip_add_args_t args; /* if port == 0, it means all-port VIP */ if (mp->port == 0) { mp->protocol = ~0; } memcpy (&(args.prefix), &mp->pfx, sizeof(args.prefix)); if (mp->is_del) { u32 vip_index; if (!(rv = lb_vip_find_index(&(args.prefix), mp->pfx.len, mp->protocol, ntohs(mp->port), &vip_index))) rv = lb_vip_del(vip_index); } else { u32 vip_index; lb_vip_type_t type = 0; if (ip46_prefix_is_ip4(&(args.prefix), mp->pfx.len)) { if (mp->encap == LB_API_ENCAP_TYPE_GRE4) type = LB_VIP_TYPE_IP4_GRE4; else if (mp->encap == LB_API_ENCAP_TYPE_GRE6) type = LB_VIP_TYPE_IP4_GRE6; else if (mp->encap == LB_API_ENCAP_TYPE_L3DSR) type = LB_VIP_TYPE_IP4_L3DSR; else if (mp->encap == LB_API_ENCAP_TYPE_NAT4) type = LB_VIP_TYPE_IP4_NAT4; } else { if (mp->encap == LB_API_ENCAP_TYPE_GRE4) type = LB_VIP_TYPE_IP6_GRE4; else if (mp->encap == LB_API_ENCAP_TYPE_GRE6) type = LB_VIP_TYPE_IP6_GRE6; else if (mp->encap == LB_API_ENCAP_TYPE_NAT6) type = LB_VIP_TYPE_IP6_NAT6; } args.plen = mp->pfx.len; args.protocol = mp->protocol; args.port = ntohs(mp->port); args.type = type; args.new_length = ntohl(mp->new_flows_table_length); if (mp->encap == LB_API_ENCAP_TYPE_L3DSR) { args.encap_args.dscp = (u8)(mp->dscp & 0x3F); } else if ((mp->encap == LB_API_ENCAP_TYPE_NAT4) ||(mp->encap == LB_API_ENCAP_TYPE_NAT6)) { args.encap_args.srv_type = mp->type; args.encap_args.target_port = ntohs(mp->target_port); } rv = lb_vip_add(args, &vip_index); } REPLY_MACRO (VL_API_LB_ADD_DEL_VIP_REPLY); } static void *vl_api_lb_add_del_vip_t_print (vl_api_lb_add_del_vip_t *mp, void * handle) { u8 * s; s = format (0, "SCRIPT: lb_add_del_vip "); s = format (s, "%U", format_vl_api_prefix, &mp->pfx); s = format (s, "%s ", (mp->encap == LB_API_ENCAP_TYPE_GRE4)? "gre4" : (mp->encap == LB_API_ENCAP_TYPE_GRE6)? "gre6" : (mp->encap == LB_API_ENCAP_TYPE_NAT4)? "nat4" : (mp->encap == LB_API_ENCAP_TYPE_NAT6)? "nat6" : "l3dsr"); if (mp->encap==LB_API_ENCAP_TYPE_L3DSR) { s = format (s, "dscp %u ", mp->dscp); } if ((mp->encap==LB_API_ENCAP_TYPE_NAT4) || (mp->encap==LB_API_ENCAP_TYPE_NAT6)) { s = format (s, "type %u ", mp->type); s = format (s, "port %u ", mp->port); s = format (s, "target_port %u ", mp->target_port); } s = format (s, "%u ", mp->new_flows_table_length); s = format (s, "%s ", mp->is_del?"del":"add"); FINISH; } static void vl_api_lb_add_del_as_t_handler (vl_api_lb_add_del_as_t * mp) { lb_main_t *lbm = &lb_main; vl_api_lb_conf_reply_t * rmp; int rv = 0; u32 vip_index; ip46_address_t vip_ip_prefix; memcpy(&vip_ip_prefix, &mp->pfx, sizeof(vip_ip_prefix)); ip46_address_t as_address; memcpy(&as_address, &mp->as_address, sizeof(as_address)); if ((rv = lb_vip_find_index(&vip_ip_prefix, mp->pfx.len, mp->protocol, ntohs(mp->port), &vip_index))) goto done; if (mp->is_del) rv = lb_vip_del_ass(vip_index, &as_address, 1, mp->is_flush); else rv = lb_vip_add_ass(vip_index, &as_address, 1); done: REPLY_MACRO (VL_API_LB_ADD_DEL_AS_REPLY); } static void *vl_api_lb_add_del_as_t_print (vl_api_lb_add_del_as_t *mp, void * handle) { u8 * s; ip46_address_t address; s = format (0, "SCRIPT: lb_add_del_as "); s = format (s, "%U ", format_vl_api_prefix, &mp->pfx); s = format(s, "%u ", mp->protocol); if (ip_address_decode (&mp->as_address, &address) == IP46_TYPE_IP6) s = format (s, "%U ", format_ip6_address, (ip6_address_t *) & address.ip6); else s = format (s, "%U ", format_ip4_address, (ip6_address_t *) & address.ip4); s = format (s, "%s ", mp->is_del?"del":"add"); FINISH; } static void vl_api_lb_vip_dump_t_handler (vl_api_lb_vip_dump_t * mp) { vl_api_registration_t *reg; reg = vl_api_client_index_to_registration (mp->client_index); if (!reg) return; lb_main_t *lbm = &lb_main; vl_api_lb_vip_details_t * rmp; int msg_size = 0; lb_vip_t *vip = 0; /* construct vip list */ pool_foreach(vip, lbm->vips, { /* Hide dummy VIP */ if (vip != lbm->vips) { msg_size = sizeof (*rmp); rmp = vl_msg_api_alloc (msg_size); memset (rmp, 0, msg_size); rmp->_vl_msg_id = htons (VL_API_LB_VIP_DETAILS + lbm->msg_id_base); rmp->context = mp->context; ip_address_encode(&vip->prefix, IP46_TYPE_ANY, &rmp->vip.pfx.address); rmp->vip.pfx.len = vip->plen; rmp->vip.protocol = htonl (vip->protocol); rmp->vip.port = htons(vip->port); rmp->encap = htonl(vip->type); rmp->dscp = vip->encap_args.dscp; rmp->srv_type = vip->encap_args.srv_type; rmp->target_port = htons(vip->encap_args.target_port); rmp->flow_table_length = htonl(vip->new_flow_table_mask + 1); vl_api_send_msg (reg, (u8 *) rmp); } }); } static void send_lb_as_details (vl_api_registration_t * reg, u32 context, lb_vip_t * vip) { vl_api_lb_as_details_t *rmp; lb_main_t *lbm = &lb_main; int msg_size = 0; u32 *as_index; u32 asindex = 0; /* construct as list under this vip */ lb_as_t *as; pool_foreach(as_index, vip->as_indexes, { /* Hide dummy As for specific VIP */ if (*as_index != 0) { as = &lbm->ass[*as_index]; msg_size = sizeof (*rmp); rmp = vl_msg_api_alloc (msg_size); memset (rmp, 0, msg_size); rmp->_vl_msg_id = htons (VL_API_LB_AS_DETAILS + lbm->msg_id_base); rmp->context = context; ip_address_encode(&vip->prefix, IP46_TYPE_ANY, (vl_api_address_t *)&rmp->vip.pfx.address); rmp->vip.pfx.len = vip->plen; rmp->vip.protocol = htonl (vip->protocol); rmp->vip.port = htons(vip->port); ip_address_encode(&as->address, IP46_TYPE_ANY, &rmp->app_srv); rmp->flags = as->flags; rmp->in_use_since = htonl(as->last_used); vl_api_send_msg (reg, (u8 *) rmp); asindex++; } }); } static void vl_api_lb_as_dump_t_handler (vl_api_lb_as_dump_t * mp) { lb_main_t *lbm = &lb_main; lb_vip_t *vip = 0; u8 dump_all = 0; ip46_address_t prefix; vl_api_registration_t *reg; reg = vl_api_client_index_to_registration (mp->client_index); if (!reg) return; clib_memcpy(&prefix.ip6, mp->pfx.address.un.ip6, sizeof(mp->pfx.address.un.ip6)); dump_all = (prefix.ip6.as_u64[0] == 0) && (prefix.ip6.as_u64[1] == 0); /* *INDENT-OFF* */ pool_foreach(vip, lbm->vips, ({ if ( dump_all || ((prefix.as_u64[0] == vip->prefix.as_u64[0]) && (prefix.as_u64[1] == vip->prefix.as_u64[1]) && (mp->protocol == vip->protocol) && (mp->port == vip->port)) ) { send_lb_as_details(reg, mp->context, vip); } })); /* *INDENT-ON* */ } static void vl_api_lb_flush_vip_t_handler (vl_api_lb_flush_vip_t * mp) { lb_main_t *lbm = &lb_main; int rv = 0; ip46_address_t vip_prefix; u8 vip_plen; u32 vip_index; vl_api_lb_flush_vip_reply_t * rmp; if (mp->port == 0) { mp->protocol = ~0; } memcpy (&(vip_prefix.ip6), mp->pfx.address.un.ip6, sizeof(vip_prefix.ip6)); vip_plen = mp->pfx.len; rv = lb_vip_find_index(&vip_prefix, vip_plen, mp->protocol, ntohs(mp->port), &vip_index); rv = lb_flush_vip_as(vip_index, ~0); REPLY_MACRO (VL_API_LB_FLUSH_VIP_REPLY); } static void *vl_api_lb_flush_vip_t_print (vl_api_lb_flush_vip_t *mp, void * handle) { u8 * s; s = format (0, "SCRIPT: lb_add_del_vip "); s = format (s, "%U/%d", format_vl_api_address, &mp->pfx.address, mp->pfx.len); s = format (s, "protocol %u ", mp->protocol); s = format (s, "port %u ", mp->port); FINISH; } /* Set up the API message handling tables */ static clib_error_t * lb_plugin_api_hookup (vlib_main_t *vm) { lb_main_t *lbm = &lb_main; #define _(N,n) \ vl_msg_api_set_handlers((VL_API_##N + lbm->msg_id_base), \ #n, \ vl_api_##n##_t_handler, \ vl_noop_handler, \ vl_api_##n##_t_endian, \ vl_api_##n##_t_print, \ sizeof(vl_api_##n##_t), 1); foreach_lb_plugin_api_msg; #undef _ return 0; } #define vl_msg_name_crc_list #include <lb/lb_all_api_h.h> #undef vl_msg_name_crc_list static void setup_message_id_table (lb_main_t * lmp, api_main_t * am) { #define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id + lmp->msg_id_base); foreach_vl_msg_name_crc_lb ; #undef _ } static clib_error_t * lb_api_init (vlib_main_t * vm) { lb_main_t * lbm = &lb_main; clib_error_t * error = 0; u8 * name; lbm->vlib_main = vm; lbm->vnet_main = vnet_get_main(); name = format (0, "lb_%08x%c", api_version, 0); /* Ask for a correctly-sized block of API message decode slots */ lbm->msg_id_base = vl_msg_api_get_msg_ids ((char *) name, VL_MSG_FIRST_AVAILABLE); error = lb_plugin_api_hookup (vm); /* Add our API messages to the global name_crc hash table */ setup_message_id_table (lbm, &api_main); vec_free (name); return error; } VLIB_INIT_FUNCTION (lb_api_init);