summaryrefslogtreecommitdiffstats
path: root/vlib/vlib/parse.c
AgeCommit message (Expand)AuthorFilesLines
2016-07-08fd-io-styleify passDave Barach1-333/+361
2015-12-15replacing all vec_sort() invocations to vec_sort_with_function()Matus Fabian1-2/+1
2015-12-08Initial commit of vpp code.v1.0.0Ed Warnicke1-0/+980
a id='n68' href='#n68'>68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432
/*
 * Copyright (c) 2015 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 <vlib/vlib.h>
#include <vnet/vnet.h>
#include <vnet/pg/pg.h>
#include <vnet/ethernet/ethernet.h>
#include <vppinfra/error.h>

typedef struct {
  u32 cached_next_index;
  u32 cached_rx_sw_if_index;

  /* vector of dispositions, indexed by rx_sw_if_index */
  u32 *tx_next_by_rx_sw_if_index;
  u32 *tx_sw_if_index_by_rx_sw_if_index;

  /* convenience variables */
  vlib_main_t * vlib_main;
  vnet_main_t * vnet_main;
} l2_patch_main_t;

typedef struct {
  u32 rx_sw_if_index;
  u32 tx_sw_if_index;
} l2_patch_trace_t;

/* packet trace format function */
static u8 * format_l2_patch_trace (u8 * s, va_list * args)
{
  CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
  CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
  l2_patch_trace_t * t = va_arg (*args, l2_patch_trace_t *);
  
  s = format (s, "L2_PATCH: rx %d tx %d", t->rx_sw_if_index,
              t->tx_sw_if_index);
  return s;
}

l2_patch_main_t l2_patch_main;

static vlib_node_registration_t l2_patch_node;

#define foreach_l2_patch_error			\
_(PATCHED, "L2 patch packets")			\
_(DROPPED, "L2 patch misconfigured drops")

typedef enum {
#define _(sym,str) L2_PATCH_ERROR_##sym,
  foreach_l2_patch_error
#undef _
  L2_PATCH_N_ERROR,
} l2_patch_error_t;

static char * l2_patch_error_strings[] = {
#define _(sym,string) string,
  foreach_l2_patch_error
#undef _
};

typedef enum {
  L2_PATCH_NEXT_DROP,
  L2_PATCH_N_NEXT,
} l2_patch_next_t;

static uword
l2_patch_node_fn (vlib_main_t * vm,
		  vlib_node_runtime_t * node,
		  vlib_frame_t * frame)
{
  u32 n_left_from, * from, * to_next;
  l2_patch_next_t next_index;
  l2_patch_main_t * l2pm = &l2_patch_main;
  vlib_node_t *n = vlib_get_node (vm, l2_patch_node.index);
  u32 node_counter_base_index = n->error_heap_index;
  vlib_error_main_t * em = &vm->error_main;

  from = vlib_frame_vector_args (frame);
  n_left_from = frame->n_vectors;
  next_index = node->cached_next_index;

  while (n_left_from > 0)
    {
      u32 n_left_to_next;

      vlib_get_next_frame (vm, node, next_index,
			   to_next, n_left_to_next);

      while (n_left_from >= 4 && n_left_to_next >= 2)
	{
          u32 bi0, bi1;
	  vlib_buffer_t * b0, * b1;
          u32 next0, next1;
          u32 sw_if_index0, sw_if_index1;
          
	  /* Prefetch next iteration. */
	  {
	    vlib_buffer_t * p2, * p3;
            
	    p2 = vlib_get_buffer (vm, from[2]);
	    p3 = vlib_get_buffer (vm, from[3]);
            
	    vlib_prefetch_buffer_header (p2, LOAD);
	    vlib_prefetch_buffer_header (p3, LOAD);

            /* So stupid / simple, we don't need to prefetch data */
	  }

          /* speculatively enqueue b0 and b1 to the current next frame */
	  to_next[0] = bi0 = from[0];
	  to_next[1] = bi1 = from[1];
	  from += 2;
	  to_next += 2;
	  n_left_from -= 2;
	  n_left_to_next -= 2;

	  b0 = vlib_get_buffer (vm, bi0);
	  b1 = vlib_get_buffer (vm, bi1);

          sw_if_index0 = vnet_buffer(b0)->sw_if_index[VLIB_RX];
          sw_if_index1 = vnet_buffer(b1)->sw_if_index[VLIB_RX];
          
	  ASSERT(l2pm->tx_next_by_rx_sw_if_index[sw_if_index0] != ~0);
	  ASSERT(l2pm->tx_sw_if_index_by_rx_sw_if_index[sw_if_index0] != ~0);
	  ASSERT(l2pm->tx_next_by_rx_sw_if_index[sw_if_index1] != ~0);
	  ASSERT(l2pm->tx_sw_if_index_by_rx_sw_if_index[sw_if_index1] != ~0);

          if (PREDICT_TRUE (sw_if_index0 == l2pm->cached_rx_sw_if_index))
            next0 = l2pm->cached_next_index;
          else
            {
              next0 = l2pm->tx_next_by_rx_sw_if_index[sw_if_index0];
              l2pm->cached_rx_sw_if_index = sw_if_index0;
              l2pm->cached_next_index = next0;
            }
          
          if (PREDICT_TRUE (sw_if_index1 == l2pm->cached_rx_sw_if_index))
            next1 = l2pm->cached_next_index;
          else 
            next1 = l2pm->tx_next_by_rx_sw_if_index [sw_if_index1];
          
          if (PREDICT_FALSE((node->flags & VLIB_NODE_FLAG_TRACE)))
            {
              if (b0->flags & VLIB_BUFFER_IS_TRACED) 
                {
                    l2_patch_trace_t *t = 
                      vlib_add_trace (vm, node, b0, sizeof (*t));
                    t->rx_sw_if_index = sw_if_index0;
                    t->tx_sw_if_index = 
                      l2pm->tx_sw_if_index_by_rx_sw_if_index [sw_if_index0];
                  }
              if (b1->flags & VLIB_BUFFER_IS_TRACED) 
                {
                    l2_patch_trace_t *t = 
                      vlib_add_trace (vm, node, b1, sizeof (*t));
                    t->rx_sw_if_index = sw_if_index1;
                    t->tx_sw_if_index = 
                      l2pm->tx_sw_if_index_by_rx_sw_if_index [sw_if_index1];
                  }
              }
            
            /* verify speculative enqueues, maybe switch current next frame */
            vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
                                             to_next, n_left_to_next,
                                             bi0, bi1, next0, next1);
        }
      
      while (n_left_from > 0 && n_left_to_next > 0)
	{
          u32 bi0;
	  vlib_buffer_t * b0;
          u32 next0;
          u32 sw_if_index0;

          /* speculatively enqueue b0 to the current next frame */
	  bi0 = from[0];
	  to_next[0] = bi0;
	  from += 1;
	  to_next += 1;
	  n_left_from -= 1;
	  n_left_to_next -= 1;

	  b0 = vlib_get_buffer (vm, bi0);

          sw_if_index0 = vnet_buffer(b0)->sw_if_index[VLIB_RX];

	  ASSERT(l2pm->tx_next_by_rx_sw_if_index[sw_if_index0] != ~0);
	  ASSERT(l2pm->tx_sw_if_index_by_rx_sw_if_index[sw_if_index0] != ~0);

          if (PREDICT_TRUE (sw_if_index0 == l2pm->cached_rx_sw_if_index))
            next0 = l2pm->cached_next_index;
          else
            {
              next0 = l2pm->tx_next_by_rx_sw_if_index [sw_if_index0];
              l2pm->cached_rx_sw_if_index = sw_if_index0;
              l2pm->cached_next_index = next0;
            }

          if (PREDICT_FALSE((node->flags & VLIB_NODE_FLAG_TRACE)))
            {
              if (b0->flags & VLIB_BUFFER_IS_TRACED) 
                {
                    l2_patch_trace_t *t = 
                      vlib_add_trace (vm, node, b0, sizeof (*t));
                    t->rx_sw_if_index = sw_if_index0;
                    t->tx_sw_if_index = 
                      l2pm->tx_sw_if_index_by_rx_sw_if_index [sw_if_index0];
                  }
            }

          /* verify speculative enqueue, maybe switch current next frame */
	  vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
					   to_next, n_left_to_next,
					   bi0, next0);
	}

      vlib_put_next_frame (vm, node, next_index, n_left_to_next);
    }

  em->counters[node_counter_base_index + L2_PATCH_ERROR_PATCHED] += 
    frame->n_vectors;

  return frame->n_vectors;
}

VLIB_REGISTER_NODE (l2_patch_node, static) = {
  .function = l2_patch_node_fn,
  .name = "l2_patch",
  .vector_size = sizeof (u32),
  .format_trace = format_l2_patch_trace,
  .type = VLIB_NODE_TYPE_INTERNAL,
  
  .n_errors = ARRAY_LEN(l2_patch_error_strings),
  .error_strings = l2_patch_error_strings,

  .n_next_nodes = L2_PATCH_N_NEXT,

  /* edit / add dispositions here */
  .next_nodes = {
        [L2_PATCH_NEXT_DROP] = "error-drop",
  },
};

int vnet_l2_patch_add_del (u32 rx_sw_if_index, u32 tx_sw_if_index, int is_add)
{
  l2_patch_main_t * l2pm = &l2_patch_main;  
  vnet_hw_interface_t * rxhi, *txhi;
  u32 tx_next_index;

  /* 
   * We assume that the API msg handler has used 2x VALIDATE_SW_IF_INDEX
   * macros...
   */

  rxhi = vnet_get_sup_hw_interface (l2pm->vnet_main, rx_sw_if_index);

  /* Make sure caller didn't pass a vlan subif, etc. */
  if (rxhi->sw_if_index != rx_sw_if_index)
    return VNET_API_ERROR_INVALID_SW_IF_INDEX;

  txhi = vnet_get_sup_hw_interface (l2pm->vnet_main, tx_sw_if_index);
  if (txhi->sw_if_index != tx_sw_if_index)
    return VNET_API_ERROR_INVALID_SW_IF_INDEX_2;

  if (is_add)
    {
      tx_next_index = vlib_node_add_next (l2pm->vlib_main,
                                          l2_patch_node.index,
                                          txhi->output_node_index);

      vec_validate_init_empty (l2pm->tx_next_by_rx_sw_if_index,
			       rx_sw_if_index, ~0);
      
      l2pm->tx_next_by_rx_sw_if_index[rx_sw_if_index] = tx_next_index;
      vec_validate_init_empty (l2pm->tx_sw_if_index_by_rx_sw_if_index,
			       rx_sw_if_index, ~0);
      l2pm->tx_sw_if_index_by_rx_sw_if_index[rx_sw_if_index] 
        = txhi->sw_if_index;
      
      ethernet_set_flags (l2pm->vnet_main, rxhi->hw_if_index, 
                          ETHERNET_INTERFACE_FLAG_ACCEPT_ALL);

      vnet_hw_interface_rx_redirect_to_node (l2pm->vnet_main, 
                                             rxhi->hw_if_index,
                                             l2_patch_node.index);
    }
  else
    {
      ethernet_set_flags (l2pm->vnet_main, rxhi->hw_if_index, 
                          0 /* disable promiscuous mode */);

      vnet_hw_interface_rx_redirect_to_node (l2pm->vnet_main, 
                                             rxhi->hw_if_index,
                                             ~0 /* disable */);
      if (vec_len (l2pm->tx_next_by_rx_sw_if_index) > rx_sw_if_index)
        {
          l2pm->tx_next_by_rx_sw_if_index[rx_sw_if_index] = ~0;
          l2pm->tx_sw_if_index_by_rx_sw_if_index[rx_sw_if_index] = ~0;
        }
    }
  
  return 0;
}

static clib_error_t *
test_patch_command_fn (vlib_main_t * vm,
                         unformat_input_t * input,
                         vlib_cli_command_t * cmd)
{
  l2_patch_main_t * l2pm = &l2_patch_main;  
  unformat_input_t _line_input, * line_input = &_line_input;
  u32 rx_sw_if_index, tx_sw_if_index;
  int rv;
  int rx_set = 0;
  int tx_set = 0;
  int is_add = 1;

  /* 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, "rx %U", unformat_vnet_sw_interface,
                    l2pm->vnet_main, &rx_sw_if_index))
        rx_set = 1;
      else if (unformat (line_input, "tx %U", unformat_vnet_sw_interface,
                         l2pm->vnet_main, &tx_sw_if_index))
        tx_set = 1;
      else if (unformat (line_input, "del"))
        is_add = 0;
      else break;
    }

  if (rx_set == 0)
    return clib_error_return (0, "rx interface not set");

  if (tx_set == 0)
    return clib_error_return (0, "tx interface not set");

  rv = vnet_l2_patch_add_del (rx_sw_if_index, tx_sw_if_index, is_add);

  switch (rv)
    {
    case 0:
      break;

    case VNET_API_ERROR_INVALID_SW_IF_INDEX:
      return clib_error_return (0, "rx interface not a physical port");

    case VNET_API_ERROR_INVALID_SW_IF_INDEX_2:
      return clib_error_return (0, "tx interface not a physical port");

    default:
      return clib_error_return 
        (0, "WARNING: vnet_l2_patch_add_del returned %d", rv);
    }
  
  return 0;
}

VLIB_CLI_COMMAND (test_patch_command, static) = {
    .path = "test l2patch",
    .short_help = 
    "rx <intfc> tx <intfc> [del]",
    .function = test_patch_command_fn,
};

// Display the contents of the l2patch table.
static clib_error_t *
show_l2patch  (vlib_main_t * vm,
	       unformat_input_t * input,
	       vlib_cli_command_t * cmd)
{
  l2_patch_main_t * l2pm = &l2_patch_main;
  u32 rx_sw_if_index;
  u32 no_entries = 1;

  ASSERT(vec_len(l2pm->tx_next_by_rx_sw_if_index) == 
	 vec_len(l2pm->tx_sw_if_index_by_rx_sw_if_index));
  
  for (rx_sw_if_index = 0; 
       rx_sw_if_index < vec_len (l2pm->tx_sw_if_index_by_rx_sw_if_index); 
       rx_sw_if_index++)
    {
      u32 tx_sw_if_index =
	l2pm->tx_sw_if_index_by_rx_sw_if_index[rx_sw_if_index];
      if (tx_sw_if_index != ~0)
	{
	  no_entries = 0;
	  vlib_cli_output (vm, "%26U -> %U",
			   format_vnet_sw_if_index_name,
			   l2pm->vnet_main, rx_sw_if_index,
			   format_vnet_sw_if_index_name, 
			   l2pm->vnet_main,tx_sw_if_index);
	}
    }

  if (no_entries)
    vlib_cli_output (vm, "no l2patch entries");

  return 0;
}

VLIB_CLI_COMMAND (show_l2patch_cli, static) = {
  .path = "show l2patch",
  .short_help = "Show l2 interface cross-connect entries",
  .function = show_l2patch,
};

clib_error_t *l2_patch_init (vlib_main_t *vm)
{
  l2_patch_main_t * mp = &l2_patch_main;
    
  mp->vlib_main = vm;
  mp->vnet_main = vnet_get_main();

  return 0;
}

VLIB_INIT_FUNCTION (l2_patch_init);