summaryrefslogtreecommitdiffstats
path: root/docs/README
AgeCommit message (Expand)AuthorFilesLines
2018-07-27Fix .gitignore so docs/Makefile is not ignored. Add README and Makefile. Fis ...John DeNisco1-0/+49
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 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
/*
 * node.c - - awkward chained buffer geometry test tool
 *
 * Copyright (c) 2019 by 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 <vppinfra/error.h>
#include <oddbuf/oddbuf.h>

typedef struct
{
  u32 sw_if_index;
  u32 next_index;
  u16 udp_checksum;
} oddbuf_trace_t;

#ifndef CLIB_MARCH_VARIANT

/* packet trace format function */
static u8 *
format_oddbuf_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 *);
  oddbuf_trace_t *t = va_arg (*args, oddbuf_trace_t *);

  s = format (s, "ODDBUF: sw_if_index %d, next index %d, udp checksum %04x\n",
	      t->sw_if_index, t->next_index, (u32) t->udp_checksum);
  return s;
}

vlib_node_registration_t oddbuf_node;

#endif /* CLIB_MARCH_VARIANT */

#define foreach_oddbuf_error \
_(SWAPPED, "Mac swap packets processed")

typedef enum
{
#define _(sym,str) ODDBUF_ERROR_##sym,
  foreach_oddbuf_error
#undef _
    ODDBUF_N_ERROR,
} oddbuf_error_t;

#ifndef CLIB_MARCH_VARIANT
static char *oddbuf_error_strings[] = {
#define _(sym,string) string,
  foreach_oddbuf_error
#undef _
};
#endif /* CLIB_MARCH_VARIANT */

typedef enum
{
  ODDBUF_NEXT_DROP,
  ODDBUF_N_NEXT,
} oddbuf_next_t;


always_inline uword
oddbuf_inline (vlib_main_t * vm,
	       vlib_node_runtime_t * node, vlib_frame_t * frame,
	       int is_ip4, int is_trace)
{
  oddbuf_main_t *om = &oddbuf_main;
  u32 n_left_from, *from;
  vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
  vlib_buffer_t *b0, *b0next;
  u32 bi;
  u16 nexts[VLIB_FRAME_SIZE], *next;
  u16 save_current_length;
  u32 next0;
  u8 *src, *dst;
  int i;
  ethernet_header_t *eh;
  ip4_header_t *ip;
  udp_header_t *udp;


  from = vlib_frame_vector_args (frame);
  n_left_from = frame->n_vectors;

  vlib_get_buffers (vm, from, bufs, n_left_from);
  b = bufs;
  next = nexts;

  while (n_left_from > 0)
    {
      b0 = b[0];
      vnet_feature_next (&next0, b0);
      nexts[0] = next0;

      if (vlib_buffer_alloc (vm, &bi, 1) != 1)
	{
	  clib_warning ("Buffer alloc fail, skipping");
	  goto skip;
	}

      if (om->first_chunk_offset)
	{
	  memmove (b0->data + b0->current_data + om->first_chunk_offset,
		   b0->data + b0->current_data, b0->current_length);
	  b0->current_data += om->first_chunk_offset;
	}

      eh = vlib_buffer_get_current (b0);
      ip = (ip4_header_t *) (eh + 1);
      udp = (udp_header_t *) (ip4_next_header (ip));

      if (1)
	{
	  save_current_length = vlib_buffer_length_in_chain (vm, b0);

	  b0next = vlib_get_buffer (vm, bi);
	  b0->flags |= VLIB_BUFFER_NEXT_PRESENT;
	  b0->flags &= ~VLIB_BUFFER_TOTAL_LENGTH_VALID;
	  b0->next_buffer = bi;

	  src = b0->data + b0->current_data + b0->current_length -
	    om->n_to_copy;
	  b0next->current_data = om->second_chunk_offset;
	  b0next->current_length = om->n_to_copy;
	  dst = b0next->data + b0next->current_data;

	  for (i = 0; i < om->n_to_copy; i++)
	    dst[i] = src[i];

	  b0->current_length -= om->n_to_copy;
	  b0next->current_length = om->n_to_copy;

	  if (vlib_buffer_length_in_chain (vm, b0) != save_current_length)
	    clib_warning ("OOPS, length incorrect after chunk split...");
	}

      udp->checksum = 0;
      udp->checksum = ip4_tcp_udp_compute_checksum (vm, b0, ip);

      if (is_trace)
	{
	  if (b[0]->flags & VLIB_BUFFER_IS_TRACED)
	    {
	      oddbuf_trace_t *t =
		vlib_add_trace (vm, node, b[0], sizeof (*t));
	      t->next_index = next[0];
	      t->sw_if_index = vnet_buffer (b[0])->sw_if_index[VLIB_RX];
	      t->udp_checksum = clib_net_to_host_u16 (udp->checksum);
	    }
	}

    skip:
      b += 1;
      next += 1;
      n_left_from -= 1;
    }

  vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);

  return frame->n_vectors;
}

VLIB_NODE_FN (oddbuf_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
			    vlib_frame_t * frame)
{
  if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
    return oddbuf_inline (vm, node, frame, 1 /* is_ip4 */ ,
			  1 /* is_trace */ );
  else
    return oddbuf_inline (vm, node, frame, 1 /* is_ip4 */ ,
			  0 /* is_trace */ );
}

/* *INDENT-OFF* */
#ifndef CLIB_MARCH_VARIANT
VLIB_REGISTER_NODE (oddbuf_node) =
{
  .name = "oddbuf",
  .vector_size = sizeof (u32),
  .format_trace = format_oddbuf_trace,
  .type = VLIB_NODE_TYPE_INTERNAL,

  .n_errors = ARRAY_LEN(oddbuf_error_strings),
  .error_strings = oddbuf_error_strings,

  .n_next_nodes = ODDBUF_N_NEXT,

  /* edit / add dispositions here */
  .next_nodes = {
        [ODDBUF_NEXT_DROP] = "error-drop",
  },
};
#endif /* CLIB_MARCH_VARIANT */
/* *INDENT-ON* */

/*
 * fd.io coding-style-patch-verification: ON
 *
 * Local Variables:
 * eval: (c-set-style "gnu")
 * End:
 */