/* *------------------------------------------------------------------ * Copyright (c) 2016 Cisco and/or its affiliates. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *------------------------------------------------------------------ */ #include #include #include #include #include #include #include #include #include static clib_error_t * memif_create_command_fn (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) { unformat_input_t _line_input, *line_input = &_line_input; int r; u32 ring_size = MEMIF_DEFAULT_RING_SIZE; memif_create_if_args_t args = { 0 }; args.buffer_size = MEMIF_DEFAULT_BUFFER_SIZE; u32 rx_queues = MEMIF_DEFAULT_RX_QUEUES; u32 tx_queues = MEMIF_DEFAULT_TX_QUEUES; /* Get a line of input. */ if (!unformat_user (input, unformat_line_input, line_input)) return 0; while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) { if (unformat (line_input, "id %u", &args.id)) ; else if (unformat (line_input, "socket %s", &args.socket_filename)) ; else if (unformat (line_input, "secret %s", &args.secret)) ; else if (unformat (line_input, "ring-size %u", &ring_size)) ; else if (unformat (line_input, "rx-queues %u", &rx_queues)) ; else if (unformat (line_input, "tx-queues %u", &tx_queues)) ; else if (unformat (line_input, "buffer-size %u", &args.buffer_size)) ; else if (unformat (line_input, "master")) args.is_master = 1; else if (unformat (line_input, "slave")) args.is_master = 0; else if (unformat (line_input, "mode ip")) args.mode = MEMIF_INTERFACE_MODE_IP; else if (unformat (line_input, "hw-addr %U", unformat_ethernet_address, args.hw_addr)) args.hw_addr_set = 1; else return clib_error_return (0, "unknown input `%U'", format_unformat_error, input); } unformat_free (line_input); if (!is_pow2 (ring_size)) return clib_error_return (0, "ring size must be power of 2"); if (ring_size > 32768) return clib_error_return (0, "maximum ring size is 32768"); args.log2_ring_size = min_log2 (ring_size); if (rx_queues > 255 || rx_queues < 1) return clib_error_return (0, "rx queue must be between 1 - 255"); if (tx_queues > 255 || tx_queues < 1) return clib_error_return (0, "tx queue must be between 1 - 255"); args.rx_queues = rx_queues; args.tx_queues = tx_queues; r = memif_create_if (vm, &args); vec_free (args.socket_filename); vec_free (args.secret); if (r <= VNET_API_ERROR_SYSCALL_ERROR_1 && r >= VNET_API_ERROR_SYSCALL_ERROR_10) return clib_error_return (0, "%s (errno %d)", strerror (errno), errno); if (r == VNET_API_ERROR_INVALID_INTERFACE) return clib_error_return (0, "Invalid interface name"); if (r == VNET_API_ERROR_SUBIF_ALREADY_EXISTS) return clib_error_return (0, "Interface with same id already exists"); return 0; } /* *INDENT-OFF* */ VLIB_CLI_COMMAND (memif_create_command, static) = { .path = "create memif", .short_help = "create memif [id ] [socket ] " "[ring-size ] [buffer-size ] [hw-addr ] " " [rx-queues ] [tx-queues ] " "[mode ip] [secret ]", .function = memif_create_command_fn, }; /* *INDENT-ON* */ static clib_error_t * memif_delete_command_fn (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) { unformat_input_t _line_input, *line_input = &_line_input; u32 sw_if_index = ~0; vnet_hw_interface_t *hw; memif_main_t *mm = &memif_main; memif_if_t *mif; vnet_main_t *vnm = vnet_get_main (); /* Get a line of input. */ if (!unformat_user (input, unformat_line_input, line_input)) return 0; while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) { if (unformat (line_input, "sw_if_index %d", &sw_if_index)) ; else if (unformat (line_input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index)) ; else return clib_error_return (0, "unknown input `%U'", format_unformat_error, input); } unformat_free (line_input); if (sw_if_index == ~0) return clib_error_return (0, "please specify interface name or sw_if_index"); hw = vnet_get_sup_hw_interface (vnm, sw_if_index); if (hw == NULL || memif_device_class.index != hw->dev_class_index) return clib_error_return (0, "not a memif interface"); mif = pool_elt_at_index (mm->interfaces, hw->dev_instance); memif_delete_if (vm, mif); return 0; } /* *INDENT-OFF* */ VLIB_CLI_COMMAND (memif_delete_command, static) = { .path = "delete memif", .short_help = "delete memif { | sw_if_index }", .function = memif_delete_command_fn, }; /* *INDENT-ON* */ static u8 * format_memif_if_flags (u8 * s, va_list * args) { u32 flags = va_arg (*args, u32); #define _(a,b,c) if ( flags & (1 << a)) s = format (s, " %s", c); foreach_memif_if_flag #undef _ return s; } static u8 * format_memif_if_mode (u8 * s, va_list * args) { memif_if_t *mif = va_arg (*args, memif_if_t *); if (mif->mode == MEMIF_INTERFACE_MODE_ETHERNET) return format (s, "ethernet"); if (mif->mode == MEMIF_INTERFACE_MODE_IP) return format (s, "ip"); if (mif->mode == MEMIF_INTERFACE_MODE_PUNT_INJECT) return format (s, "punt-inject"); return format (s, "unknown mode (%u)", mif->mode);; } static u8 * format_memif_queue (u8 * s, va_list * args) { memif_if_t *mif = va_arg (*args, memif_if_t *); memif_queue_t *mq = va_arg (*args, me