summaryrefslogtreecommitdiffstats
path: root/src/vnet/ethernet/format.c
blob: 1ca1bce8f2a8b18bf7978f19c333a76d852c4575 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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
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
/*
 * 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.
 */
/*
 * ethernet_format.c: ethernet formatting/parsing.
 *
 * Copyright (c) 2008 Eliot Dresselhaus
 *
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 *
 *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 *  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 *  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 *  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 *  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */

#include <vlib/vlib.h>
#include <vnet/ethernet/ethernet.h>

u8 *
format_ethernet_address (u8 * s, va_list * args)
{
  ethernet_main_t *em = &ethernet_main;
  u8 *a = va_arg (*args, u8 *);

  if (em->format_ethernet_address_16bit)
    return format (s, "%02x%02x.%02x%02x.%02x%02x",
		   a[0], a[1], a[2], a[3], a[4], a[5]);
  else
    return format (s, "%02x:%02x:%02x:%02x:%02x:%02x",
		   a[0], a[1], a[2], a[3], a[4], a[5]);
}

u8 *
format_mac_address (u8 * s, va_list * args)
{
  return (format_ethernet_address (s, args));
}

u8 *
format_ethernet_type (u8 * s, va_list * args)
{
  ethernet_type_t type = va_arg (*args, u32);
  ethernet_main_t *em = &ethernet_main;
  ethernet_type_info_t *t = ethernet_get_type_info (em, type);

  if (t)
    s = format (s, "%s", t->name);
  else
    s = format (s, "0x%04x", type);

  return s;
}

u8 *
format_ethernet_vlan_tci (u8 * s, va_list * va)
{
  u32 vlan_tci = va_arg (*va, u32);

  u32 vid = (vlan_tci & 0xfff);
  u32 cfi = (vlan_tci >> 12) & 1;
  u32 pri = (vlan_tci >> 13);

  s = format (s, "%d", vid);
  if (pri != 0)
    s = format (s, " priority %d", pri);
  if (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:
 */
pan> (*va, u8 *); uword len; if (fi.width[1] != 0) len = clib_min (vec_len (v), fi.width[1]); else len = vec_len (v); vec_add (s, v, len); } break; case 'f': case 'g': case 'e': /* Floating point. */ ASSERT (fi.how_long == 0 || fi.how_long == 'l'); s = format_float (s, va_arg (*va, double), fi.width[1], c); break; case 'U': /* User defined function. */ { typedef u8 *(user_func_t) (u8 * s, va_list * args); user_func_t *u = va_arg (*va, user_func_t *); s = (*u) (s, va); } break; } s = justify (s, &fi, s_initial_len); } done: *_s = s; return f; } u8 * va_format (u8 * s, const char *fmt, va_list * va) { const u8 *f = (u8 *) fmt, *g; u8 c; g = f; while (1) { c = *f; if (!c) break; if (c == '%') { if (f > g) vec_add (s, g, f - g); f = g = do_percent (&s, f, va); } else { f++; } } if (f > g) vec_add (s, g, f - g); #ifdef __COVERITY__ if (s == 0) return (u8 *) "liar liar pants on fire s can't be zero!"; #endif return s; } u8 * format (u8 * s, const char *fmt, ...) { va_list va; va_start (va, fmt); s = va_format (s, fmt, &va); va_end (va); #ifdef __COVERITY__ if (s == 0) return (u8 *) "liar liar pants on fire s can't be zero!"; #endif return s; } word va_fformat (FILE * f, char *fmt, va_list * va) { word ret; u8 *s; s = va_format (0, fmt, va); #ifdef CLIB_UNIX if (f) { ret = fwrite (s, vec_len (s), 1, f); } else #endif /* CLIB_UNIX */ { ret = 0; os_puts (s, vec_len (s), /* is_error */ 0); } vec_free (s); return ret; } word fformat (FILE * f, char *fmt, ...) { va_list va; word ret; va_start (va, fmt); ret = va_fformat (f, fmt, &va); va_end (va); return (ret); } #ifdef CLIB_UNIX void fformat_append_cr (FILE * ofp, const char *fmt, ...) { va_list va; va_start (va, fmt); (void) va_fformat (ofp, (char *) fmt, &va); va_end (va); fformat (ofp, "\n"); } word fdformat (int fd, char *fmt, ...) { word ret; u8 *s; va_list va; va_start (va, fmt); s = va_format (0, fmt, &va); va_end (va); ret = write (fd, s, vec_len (s)); vec_free (s); return ret; } #endif /* Format integral type. */ static u8 * format_integer (u8 * s, u64 number, format_integer_options_t * options) { u64 q; u32 r; u8 digit_buffer[128]; u8 *d = digit_buffer + sizeof (digit_buffer); word c, base; if (options->is_signed && (i64) number < 0) { number = -number; vec_add1 (s, '-'); } if (options->n_bits < BITS (number)) number &= ((u64) 1 << options->n_bits) - 1; base = options->base; while (1) { q = number / base; r = number % base; if (r < 10 + 26 + 26) { if (r < 10) c = '0' + r; else if (r < 10 + 26) c = 'a' + (r - 10); else c = 'A' + (r - 10 - 26); if (options->uppercase_digits && base <= 10 + 26 && c >= 'a' && c <= 'z') c += 'A' - 'a'; *--d = c; } else /* will never happen, warning be gone */ { *--d = '?'; } if (q == 0) break; number = q; } vec_add (s, d, digit_buffer + sizeof (digit_buffer) - d); return s; } /* Floating point formatting. */ /* Deconstruct IEEE 64 bit number into sign exponent and fraction. */ #define f64_down(f,sign,expon,fraction) \ do { \ union { u64 u; f64 f; } _f64_down_tmp; \ _f64_down_tmp.f = (f); \ (sign) = (_f64_down_tmp.u >> 63); \ (expon) = ((_f64_down_tmp.u >> 52) & 0x7ff) - 1023; \ (fraction) = ((_f64_down_tmp.u << 12) >> 12) | ((u64) 1 << 52); \ } while (0) /* Construct IEEE 64 bit number. */ static f64 f64_up (uword sign, word expon, u64 fraction) { union { u64 u; f64 f; } tmp; tmp.u = (u64) ((sign) != 0) << 63; expon += 1023; if (expon > 1023) expon = 1023; if (expon < 0) expon = 0; tmp.u |= (u64) expon << 52; tmp.u |= fraction & (((u64) 1 << 52) - 1); return tmp.f; } /* Returns approximate precision of number given its exponent. */ static f64 f64_precision (int base2_expon) { static int n_bits = 0; if (!n_bits) { /* Compute number of significant bits in floating point representation. */ f64 one = 0; f64 small = 1; while (one != 1) { small *= .5; n_bits++; one = 1 + small; } } return f64_up (0, base2_expon - n_bits, 0); } /* Return x 10^n */ static f64 times_power_of_ten (f64 x, int n) { if (n >= 0) { static f64 t[8] = { 1e+0, 1e+1, 1e+2, 1e+3, 1e+4, 1e+5, 1e+6, 1e+7, }; while (n >= 8) { x *= 1e+8; n -= 8; } return x * t[n]; } else { static f64 t[8] = { 1e-0, 1e-1, 1e-2, 1e-3, 1e-4, 1e-5, 1e-6, 1e-7, }; while (n <= -8) { x *= 1e-8; n += 8; } return x * t[-n]; } } /* Write x = y * 10^expon with 1 < y < 10. */ static f64 normalize (f64 x, word * expon_return, f64 * prec_return) { word expon2, expon10; CLIB_UNUSED (u64 fraction); CLIB_UNUSED (word sign); f64 prec; f64_down (x, sign, expon2, fraction); expon10 = .5 + expon2 * .301029995663981195213738894724493 /* Log (2) / Log (10) */ ; prec = f64_precision (expon2); x = times_power_of_ten (x, -expon10); prec = times_power_of_ten (prec, -expon10); while (x < 1) { x *= 10; prec *= 10; expon10--; } while (x > 10) { x *= .1; prec *= .1; expon10++; } if (x + prec >= 10) { x = 1; expon10++; } *expon_return = expon10; *prec_return = prec; return x; } static u8 * add_some_zeros (u8 * s, uword n_zeros) { while (n_zeros > 0) { vec_add1 (s, '0'); n_zeros--; } return s; } /* Format a floating point number with the given number of fractional digits (e.g. 1.2345 with 2 fraction digits yields "1.23") and output style. */ static u8 * format_float (u8 * s, f64 x, uword n_fraction_digits, uword output_style) { f64 prec; word sign, expon, n_fraction_done, added_decimal_point; /* Position of decimal point relative to where we are. */ word decimal_point; /* Default number of digits to print when its not specified. */ if (n_fraction_digits == ~0) n_fraction_digits = 7; n_fraction_done = 0; decimal_point = 0; added_decimal_point = 0; sign = expon = 0; /* Special case: zero. */ if (x == 0) { do_zero: vec_add1 (s, '0'); goto done; } if (x < 0) { x = -x; sign = 1; } /* Check for not-a-number. */ if (isnan (x)) return format (s, "%cNaN", sign ? '-' : '+'); /* Check for infinity. */ if (isinf (x)) return format (s, "%cinfinity", sign ? '-' : '+'); x = normalize (x, &expon, &prec); /* Not enough digits to print anything: so just print 0 */ if ((word) - expon > (word) n_fraction_digits && (output_style == 'f' || (output_style == 'g'))) goto do_zero; if (sign) vec_add1 (s, '-'); if (output_style == 'f' || (output_style == 'g' && expon > -10 && expon < 10)) { if (expon < 0) { /* Add decimal point and leading zeros. */ vec_add1 (s, '.'); n_fraction_done = clib_min (-(expon + 1), n_fraction_digits); s = add_some_zeros (s, n_fraction_done); decimal_point = -n_fraction_done; added_decimal_point = 1; } else decimal_point = expon + 1; } else { /* Exponential output style. */ decimal_point = 1; output_style = 'e'; } while (1) { uword digit; /* Number is smaller than precision: call it zero. */ if (x < prec) break; digit = x; x -= digit; if (x + prec >= 1) { digit++; x -= 1; } /* Round last printed digit. */ if (decimal_point <= 0 && n_fraction_done + 1 == n_fraction_digits && digit < 9) digit += x >= .5; vec_add1 (s, '0' + digit); /* Move rightwards towards/away from decimal point. */ decimal_point--; n_fraction_done += decimal_point < 0; if (decimal_point <= 0 && n_fraction_done >= n_fraction_digits) break; if (decimal_point == 0 && x != 0) { vec_add1 (s, '.'); added_decimal_point = 1; } x *= 10; prec *= 10; } done: if (decimal_point > 0) { s = add_some_zeros (s, decimal_point); decimal_point = 0; } if (n_fraction_done < n_fraction_digits) { if (!added_decimal_point) vec_add1 (s, '.'); s = add_some_zeros (s, n_fraction_digits - n_fraction_done); } if (output_style == 'e') s = format (s, "e%wd", expon); return s; } /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */