aboutsummaryrefslogtreecommitdiffstats
path: root/src/vppinfra/bihash_template.c
blob: d8b97b5f3d08b8319eaf12f2cf4ed426b7d6747e (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
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
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
/*
 * 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.
 */

/** @cond DOCUMENTATION_IS_IN_BIHASH_DOC_H */

void BV (clib_bihash_init)
  (BVT (clib_bihash) * h, char *name, u32 nbuckets, uword memory_size)
{
  void *oldheap;

  nbuckets = 1 << (max_log2 (nbuckets));

  h->name = (u8 *) name;
  h->nbuckets = nbuckets;
  h->log2_nbuckets = max_log2 (nbuckets);

  h->mheap = mheap_alloc (0 /* use VM */ , memory_size);

  oldheap = clib_mem_set_heap (h->mheap);
  vec_validate_aligned (h->buckets, nbuckets - 1, CLIB_CACHE_LINE_BYTES);
  h->writer_lock = clib_mem_alloc_aligned (CLIB_CACHE_LINE_BYTES,
					   CLIB_CACHE_LINE_BYTES);

  clib_mem_set_heap (oldheap);
}

void BV (clib_bihash_free) (BVT (clib_bihash) * h)
{
  mheap_free (h->mheap);
  memset (h, 0, sizeof (*h));
}

static
BVT (clib_bihash_value) *
BV (value_alloc) (BVT (clib_bihash) * h, u32 log2_pages)
{
  BVT (clib_bihash_value) * rv = 0;
  void *oldheap;

  ASSERT (h->writer_lock[0]);
  if (log2_pages >= vec_len (h->freelists) || h->freelists[log2_pages] == 0)
    {
      oldheap = clib_mem_set_heap (h->mheap);

      vec_validate (h->freelists, log2_pages);
      vec_validate_aligned (rv, (1 << log2_pages) - 1, CLIB_CACHE_LINE_BYTES);
      clib_mem_set_heap (oldheap);
      goto initialize;
    }
  rv = h->freelists[log2_pages];
  h->freelists[log2_pages] = rv->next_free;

initialize:
  ASSERT (rv);
  ASSERT (vec_len (rv) == (1 << log2_pages));
  /*
   * Latest gcc complains that the length arg is zero
   * if we replace (1<<log2_pages) with vec_len(rv).
   * No clue.
   */
  memset (rv, 0xff, sizeof (*rv) * (1 << log2_pages));
  return rv;
}

static void
BV (value_free) (BVT (clib_bihash) * h, BVT (clib_bihash_value) * v)
{
  u32 log2_pages;

  ASSERT (h->writer_lock[0]);

  log2_pages = min_log2 (vec_len (v));

  ASSERT (vec_len (h->freelists) > log2_pages);

  v->next_free = h->freelists[log2_pages];
  h->freelists[log2_pages] = v;
}

static inline void
BV (make_working_copy) (BVT (clib_bihash) * h, clib_bihash_bucket_t * b)
{
  BVT (clib_bihash_value) * v;
  clib_bihash_bucket_t working_bucket __attribute__ ((aligned (8)));
  void *oldheap;
  BVT (clib_bihash_value) * working_copy;
  u32 cpu_number = os_get_cpu_number ();

  if (cpu_number >= vec_len (h->working_copies))
    {
      oldheap = clib_mem_set_heap (h->mheap);
      vec_validate (h->working_copies, cpu_number);
      clib_mem_set_heap (oldheap);
    }

  /*
   * working_copies are per-cpu so that near-simultaneous
   * updates from multiple threads will not result in sporadic, spurious
   * lookup failures.
   */
  working_copy = h->working_copies[cpu_number];

  h->saved_bucket.as_u64 = b->as_u64;
  oldheap = clib_mem_set_heap (h->mheap);

  if ((1 << b->log2_pages) > vec_len (working_copy))
    {
      vec_validate_aligned (working_copy, (1 << b->log2_pages) - 1,
			    sizeof (u64));
      h->working_copies[cpu_number] = working_copy;
    }

  _vec_len (working_copy) = 1 << b->log2_pages;
  clib_mem_set_heap (oldheap);

  v = BV (clib_bihash_get_value) (h, b->offset);

  clib_memcpy (working_copy, v, sizeof (*v) * (1 << b->log2_pages));
  working_bucket.as_u64 = b->as_u64;
  working_bucket.offset = BV (clib_bihash_get_offset) (h, working_copy);
  CLIB_MEMORY_BARRIER ();
  b->as_u64 = working_bucket.as_u64;
  h->working_copies[cpu_number] = working_copy;
}

static
BVT (clib_bihash_value) *
BV (split_and_rehash)
  (BVT (clib_bihash) * h,
   BVT (clib_bihash_value) * old_values, u32 new_log2_pages)
{
  BVT (clib_bihash_value) * new_values, *new_v;
  int i, j, length;

  new_values = BV (value_alloc) (h, new_log2_pages);
  length = vec_len (old_values) * BIHASH_KVP_PER_PAGE;

  for (i = 0; i < length; i++)
    {
      u64 new_hash;

      /* Entry not in use? Forget it */
      if (BV (clib_bihash_is_free) (&(old_values->kvp[i])))
	continue;

      /* rehash the item onto its new home-page */
      new_hash = BV (clib_bihash_hash) (&(old_values->kvp[i]));
      new_hash >>= h->log2_nbuckets;
      new_hash &= (1 << new_log2_pages) - 1;
      new_v = &new_values[new_hash];

      /* Across the new home-page */
      for (j = 0; j < BIHASH_KVP_PER_PAGE; j++)
	{
	  /* Empty slot */
	  if (BV (clib_bihash_is_free) (&(new_v->kvp[j])))
	    {
	      clib_memcpy (&(new_v->kvp[j]), &(old_values->kvp[i]),
			   sizeof (new_v->kvp[j]));
	      goto doublebreak;
	    }
	}
      /* Crap. Tell caller to try again */
      BV (value_free) (h, new_values);
      return 0;
    doublebreak:;
    }
  return new_values;
}

static
BVT (clib_bihash_value) *
BV (split_and_rehash_linear)
  (BVT (clib_bihash) * h,
   BVT (clib_bihash_value) * old_values, u32 new_log2_pages)
{
  BVT (clib_bihash_value) * new_values;
  int i, j, new_length;

  new_values = BV (value_alloc) (h, new_log2_pages);
  new_length = (1 << new_log2_pages) * BIHASH_KVP_PER_PAGE;

  j = 0;
  /* Across the old value array */
  for (i = 0; i < vec_len (old_values) * BIHASH_KVP_PER_PAGE; i++)
    {
      /* Find a free slot in the new linear scan bucket */
      for (; j < new_length; j++)
	{
	  /* Old value not in use? Forget it. */
	  if (BV (clib_bihash_is_free) (&(old_values->kvp[i])))
	    goto doublebreak;

	  /* New value should never be in use */
	  if (BV (clib_bihash_is_free) (&(new_values->kvp[j])))
	    {
	      /* Copy the old value and move along */
	      clib_memcpy (&(new_values->kvp[j]), &(old_values->kvp[i]),
			   sizeof (new_values->kvp[j]));
	      j++;
	      goto doublebreak;
	    }
	}
      /* This should never happen... */
      clib_warning ("BUG: linear rehash failed!");
      BV (value_free) (h, new_values);
      return 0;

    doublebreak:;
    }
  return new_values;
}

int BV (clib_bihash_add_del)
  (BVT (clib_bihash) * h, BVT (clib_bihash_kv) * add_v, int is_add)
{
  u32 bucket_index;
  clib_bihash_bucket_t *b, tmp_b;
  BVT (clib_bihash_value) * v, *new_v, *save_new_v, *working_copy;
  int rv = 0;
  int i, limit;
  u64 hash, new_hash;
  u32 new_log2_pages;
  u32 cpu_number = os_get_cpu_number ();
  int mark_bucket_linear;
  int resplit_once;

  hash = BV (clib_bihash_hash) (add_v);

  bucket_index = hash & (h->nbuckets - 1);
  b = &h->buckets[bucket_index];

  hash >>= h->log2_nbuckets;

  while (__sync_lock_test_and_set (h->writer_lock, 1))
    ;

  /* First elt in the bucket? */
  if (b->offset == 0)
    {
      if (is_add == 0)
	{
	  rv = -1;
	  goto unlock;
	}

      v = BV (value_alloc) (h, 0);
      *v->kvp = *add_v;
      tmp_b.as_u64 = 0;
      tmp_b.offset = BV (clib_bihash_get_offset) (h, v);

      b->as_u64 = tmp_b.as_u64;
      goto unlock;
    }

  BV (make_working_copy) (h, b);

  v = BV (clib_bihash_get_value) (h, h->saved_bucket.offset);

  limit = BIHASH_KVP_PER_PAGE;
  v += (b->linear_search == 0) ? hash & ((1 << b->log2_pages) - 1) : 0;
  if (b->linear_search)
    limit <<= b->log2_pages;

  if (is_add)
    {
      /*
       * For obvious (in hindsight) reasons, see if we're supposed to
       * replace an existing key, then look for an empty slot.
       */
      for (i = 0; i < limit; i++)
	{
	  if (!memcmp (&(v->kvp[i]), &add_v->key, sizeof (add_v->key)))
	    {
	      clib_memcpy (&(v->kvp[i]), add_v, sizeof (*add_v));
	      CLIB_MEMORY_BARRIER ();
	      /* Restore the previous (k,v) pairs */
	      b->as_u64 = h->saved_bucket.as_u64;
	      goto unlock;
	    }
	}
      for (i = 0; i < limit; i++)
	{
	  if (BV (clib_bihash_is_free) (&(v->kvp[i])))
	    {
	      clib_memcpy (&(v->kvp[i]), add_v, sizeof (*add_v));
	      CLIB_MEMORY_BARRIER ();
	      b->as_u64 = h->saved_bucket.as_u64;
	      goto unlock;
	    }
	}
      /* no room at the inn... split case... */
    }
  else
    {
      for (i = 0; i < limit; i++)
	{
	  if (!memcmp (&(v->kvp[i]), &add_v->key, sizeof (add_v->key)))
	    {
	      memset (&(v->kvp[i]), 0xff, sizeof (*(add_v)));
	      CLIB_MEMORY_BARRIER ();
	      b->as_u64 = h->saved_bucket.as_u64;
	      goto unlock;
	    }
	}
      rv = -3;
      b->as_u64 = h->saved_bucket.as_u64;
      goto unlock;
    }

  new_log2_pages = h->saved_bucket.log2_pages + 1;
  mark_bucket_linear = 0;

  working_copy = h->working_copies[cpu_number];
  resplit_once = 0;

  new_v = BV (split_and_rehash) (h, working_copy, new_log2_pages);
  if (new_v == 0)
    {
    try_resplit:
      resplit_once = 1;
      new_log2_pages++;
      /* Try re-splitting. If that fails, fall back to linear search */
      new_v = BV (split_and_rehash) (h, working_copy, new_log2_pages);
      if (new_v == 0)
	{
	mark_linear:
	  new_log2_pages--;
	  /* pinned collisions, use linear search */
	  new_v =
	    BV (split_and_rehash_linear) (h, working_copy, new_log2_pages);
	  mark_bucket_linear = 1;
	}
    }

  /* Try to add the new entry */
  save_new_v = new_v;
  new_hash = BV (clib_bihash_hash) (add_v);
  limit = BIHASH_KVP_PER_PAGE;
  if (mark_bucket_linear)
    limit <<= new_log2_pages;
  new_hash >>= h->log2_nbuckets;
  new_hash &= (1 << new_log2_pages) - 1;
  new_v += mark_bucket_linear ? 0 : new_hash;

  for (i = 0; i < limit; i++)
    {
      if (BV (clib_bihash_is_free) (&(new_v->kvp[i])))
	{
	  clib_memcpy (&(new_v->kvp[i]), add_v, sizeof (*add_v));
	  goto expand_ok;
	}
    }
  /* Crap. Try again */
  BV (value_free) (h, save_new_v);
  /*
   * If we've already doubled the size of the bucket once,
   * fall back to linear search now.
   */
  if (resplit_once)
    goto mark_linear;
  else
    goto try_resplit;

expand_ok:
  /* Keep track of the number of linear-scan buckets */
  if (tmp_b.linear_search ^ mark_bucket_linear)
    h->linear_buckets += (mark_bucket_linear == 1) ? 1 : -1;

  tmp_b.log2_pages = new_log2_pages;
  tmp_b.offset = BV (clib_bihash_get_offset) (h, save_new_v);
  tmp_b.linear_search = mark_bucket_linear;
  CLIB_MEMORY_BARRIER ();
  b->as_u64 = tmp_b.as_u64;
  v = BV (clib_bihash_get_value) (h, h->saved_bucket.offset);
  BV (value_free) (h, v);

unlock:
  CLIB_MEMORY_BARRIER ();
  h->writer_lock[0] = 0;
  return rv;
}

int BV (clib_bihash_search)
  (const BVT (clib_bihash) * h,
   BVT (clib_bihash_kv) * search_key, BVT (clib_bihash_kv) * valuep)
{
  u64 hash;
  u32 bucket_index;
  BVT (clib_bihash_value) * v;
  clib_bihash_bucket_t *b;
  int i, limit;

  ASSERT (valuep);

  hash = BV (clib_bihash_hash) (search_key);

  bucket_index = hash & (h->nbuckets - 1);
  b = &h->buckets[bucket_index];

  if (b->offset == 0)
    return -1;

  hash >>= h->log2_nbuckets;

  v = BV (clib_bihash_get_value) (h, b->offset);
  limit = BIHASH_KVP_PER_PAGE;
  v += (b->linear_search == 0) ? hash & ((1 << b->log2_pages) - 1) : 0;
  if (PREDICT_FALSE (b->linear_search))
    limit <<= b->log2_pages;

  for (i = 0; i < limit; i++)
    {
      if (BV (clib_bihash_key_compare) (v->kvp[i].key, search_key->key))
	{
	  *valuep = v->kvp[i];
	  return 0;
	}
    }
  return -1;
}

u8 *BV (format_bihash) (u8 * s, va_list * args)
{
  BVT (clib_bihash) * h = va_arg (*args, BVT (clib_bihash) *);
  int verbose = va_arg (*args, int);
  clib_bihash_bucket_t *b;
  BVT (clib_bihash_value) * v;
  int i, j, k;
  u64 active_elements = 0;

  s = format (s, "Hash table %s\n", h->name ? h->name : (u8 *) "(unnamed)");

  for (i = 0; i < h->nbuckets; i++)
    {
      b = &h->buckets[i];
      if (b->offset == 0)
	{
	  if (verbose > 1)
	    s = format (s, "[%d]: empty\n", i);
	  continue;
	}

      if (verbose)
	{
	  s = format (s, "[%d]: heap offset %d, len %d, linear %d\n", i,
		      b->offset, (1 << b->log2_pages), b->linear_search);
	}

      v = BV (clib_bihash_get_value) (h, b->offset);
      for (j = 0; j < (1 << b->log2_pages); j++)
	{
	  for (k = 0; k < BIHASH_KVP_PER_PAGE; k++)
	    {
	      if (BV (clib_bihash_is_free) (&v->kvp[k]))
		{
		  if (verbose > 1)
		    s = format (s, "    %d: empty\n",
				j * BIHASH_KVP_PER_PAGE + k);
		  continue;
		}
	      if (verbose)
		{
		  s = format (s, "    %d: %U\n",
			      j * BIHASH_KVP_PER_PAGE + k,
			      BV (format_bihash_kvp), &(v->kvp[k]));
		}
	      active_elements++;
	    }
	  v++;
	}
    }

  s = format (s, "    %lld active elements\n", active_elements);
  s = format (s, "    %d free lists\n", vec_len (h->freelists));
  s = format (s, "    %d linear search buckets\n", h->linear_buckets);

  return s;
}

void BV (clib_bihash_foreach_key_value_pair)
  (BVT (clib_bihash) * h, void *callback, void *arg)
{
  int i, j, k;
  clib_bihash_bucket_t *b;
  BVT (clib_bihash_value) * v;
  void (*fp) (BVT (clib_bihash_kv) *, void *) = callback;

  for (i = 0; i < h->nbuckets; i++)
    {
      b = &h->buckets[i];
      if (b->offset == 0)
	continue;

      v = BV (clib_bihash_get_value) (h, b->offset);
      for (j = 0; j < (1 << b->log2_pages); j++)
	{
	  for (k = 0; k < BIHASH_KVP_PER_PAGE; k++)
	    {
	      if (BV (clib_bihash_is_free) (&v->kvp[k]))
		continue;

	      (*fp) (&v->kvp[k], arg);
	    }
	  v++;
	}
    }
}

/** @endcond */

/*
 * fd.io coding-style-patch-verification: ON
 *
 * Local Variables:
 * eval: (c-set-style "gnu")
 * End:
 */
n> vec_free (filter); } static void vl_api_sw_interface_add_del_address_t_handler (vl_api_sw_interface_add_del_address_t * mp) { vlib_main_t *vm = vlib_get_main (); vnet_main_t *vnm = vnet_get_main (); vl_api_sw_interface_add_del_address_reply_t *rmp; int rv = 0; u32 is_del; clib_error_t *error = 0; VALIDATE_SW_IF_INDEX (mp); is_del = mp->is_add == 0; vnm->api_errno = 0; if (mp->del_all) ip_del_all_interface_addresses (vm, ntohl (mp->sw_if_index)); else if (mp->is_ipv6) error = ip6_add_del_interface_address (vm, ntohl (mp->sw_if_index), (void *) mp->address, mp->address_length, is_del); else error = ip4_add_del_interface_address (vm, ntohl (mp->sw_if_index), (void *) mp->address, mp->address_length, is_del); if (error) { rv = vnm->api_errno; clib_error_report (error); goto done; } BAD_SW_IF_INDEX_LABEL; done: REPLY_MACRO (VL_API_SW_INTERFACE_ADD_DEL_ADDRESS_REPLY); } void stats_dslock_with_hint (int hint, int tag) __attribute__ ((weak)); void stats_dslock_with_hint (int hint, int tag) { } void stats_dsunlock (void) __attribute__ ((weak)); void stats_dsunlock (void) { } static void vl_api_sw_interface_set_table_t_handler (vl_api_sw_interface_set_table_t * mp) { vl_api_sw_interface_set_table_reply_t *rmp; u32 sw_if_index = ntohl (mp->sw_if_index); u32 table_id = ntohl (mp->vrf_id); int rv = 0; VALIDATE_SW_IF_INDEX (mp); stats_dslock_with_hint (1 /* release hint */ , 4 /* tag */ ); if (mp->is_ipv6) rv = ip_table_bind (FIB_PROTOCOL_IP6, sw_if_index, table_id, 1); else rv = ip_table_bind (FIB_PROTOCOL_IP4, sw_if_index, table_id, 1); stats_dsunlock (); BAD_SW_IF_INDEX_LABEL; REPLY_MACRO (VL_API_SW_INTERFACE_SET_TABLE_REPLY); } int ip_table_bind (fib_protocol_t fproto, u32 sw_if_index, u32 table_id, u8 is_api) { CLIB_UNUSED (ip_interface_address_t * ia); u32 fib_index, mfib_index; fib_source_t src; mfib_source_t msrc; if (is_api) { src = FIB_SOURCE_API; msrc = MFIB_SOURCE_API; } else { src = FIB_SOURCE_CLI; msrc = MFIB_SOURCE_CLI; } /* * This if table does not exist = error is what we want in the end. */ fib_index = fib_table_find (fproto, table_id); mfib_index = mfib_table_find (fproto, table_id); if (~0 == fib_index || ~0 == mfib_index) { return (VNET_API_ERROR_NO_SUCH_FIB); } if (FIB_PROTOCOL_IP6 == fproto) { /* * If the interface already has in IP address, then a change int * VRF is not allowed. The IP address applied must first be removed. * We do not do that automatically here, since VPP has no knowledge * of whether those subnets are valid in the destination VRF. */ /* *INDENT-OFF* */ foreach_ip_interface_address (&ip6_main.lookup_main, ia, sw_if_index, 1 /* honor unnumbered */ , ({ return (VNET_API_ERROR_ADDRESS_FOUND_FOR_INTERFACE); })); /* *INDENT-ON* */ vec_validate (ip6_main.fib_index_by_sw_if_index, sw_if_index); vec_validate (ip6_main.mfib_index_by_sw_if_index, sw_if_index); /* * tell those that are interested that the binding is changing. */ ip6_table_bind_callback_t *cb; vec_foreach (cb, ip6_main.table_bind_callbacks) cb->function (&ip6_main, cb->function_opaque, sw_if_index, fib_index, ip6_main.fib_index_by_sw_if_index[sw_if_index]); if (0 == table_id) { /* reset back to default */ if (0 != ip6_main.fib_index_by_sw_if_index[sw_if_index]) fib_table_unlock (ip6_main.fib_index_by_sw_if_index[sw_if_index], FIB_PROTOCOL_IP6, src); if (0 != ip6_main.mfib_index_by_sw_if_index[sw_if_index]) mfib_table_unlock (ip6_main.mfib_index_by_sw_if_index [sw_if_index], FIB_PROTOCOL_IP6, msrc); } else { /* we need to lock the table now it's inuse */ fib_table_lock (fib_index, FIB_PROTOCOL_IP6, src); mfib_table_lock (mfib_index, FIB_PROTOCOL_IP6, msrc); } ip6_main.fib_index_by_sw_if_index[sw_if_index] = fib_index; ip6_main.mfib_index_by_sw_if_index[sw_if_index] = mfib_index; } else { /* * If the interface already has in IP address, then a change int * VRF is not allowed. The IP address applied must first be removed. * We do not do that automatically here, since VPP has no knowledge * of whether those subnets are valid in the destination VRF. */ /* *INDENT-OFF* */ foreach_ip_interface_address (&ip4_main.lookup_main, ia, sw_if_index, 1 /* honor unnumbered */ , ({ return (VNET_API_ERROR_ADDRESS_FOUND_FOR_INTERFACE); })); /* *INDENT-ON* */ vec_validate (ip4_main.fib_index_by_sw_if_index, sw_if_index); vec_validate (ip4_main.mfib_index_by_sw_if_index, sw_if_index); /* * tell those that are interested that the binding is changing. */ ip4_table_bind_callback_t *cb; vec_foreach (cb, ip4_main.table_bind_callbacks) cb->function (&ip4_main, cb->function_opaque, sw_if_index, fib_index, ip4_main.fib_index_by_sw_if_index[sw_if_index]); if (0 == table_id) { /* reset back to default */ if (0 != ip4_main.fib_index_by_sw_if_index[sw_if_index]) fib_table_unlock (ip4_main.fib_index_by_sw_if_index[sw_if_index], FIB_PROTOCOL_IP4, src); if (0 != ip4_main.mfib_index_by_sw_if_index[sw_if_index]) mfib_table_unlock (ip4_main.mfib_index_by_sw_if_index [sw_if_index], FIB_PROTOCOL_IP4, msrc); } else { /* we need to lock the table now it's inuse */ fib_index = fib_table_find_or_create_and_lock (FIB_PROTOCOL_IP4, table_id, src); mfib_index = mfib_table_find_or_create_and_lock (FIB_PROTOCOL_IP4, table_id, msrc); } ip4_main.fib_index_by_sw_if_index[sw_if_index] = fib_index; ip4_main.mfib_index_by_sw_if_index[sw_if_index] = mfib_index; } return (0); } static void send_sw_interface_get_table_reply (vl_api_registration_t * reg, u32 context, int retval, u32 vrf_id) { vl_api_sw_interface_get_table_reply_t *mp; mp = vl_msg_api_alloc (sizeof (*mp)); clib_memset (mp, 0, sizeof (*mp)); mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_GET_TABLE_REPLY); mp->context = context; mp->retval = htonl (retval); mp->vrf_id = htonl (vrf_id); vl_api_send_msg (reg, (u8 *) mp); } static void vl_api_sw_interface_get_table_t_handler (vl_api_sw_interface_get_table_t * mp) { vl_api_registration_t *reg; fib_table_t *fib_table = 0; u32 sw_if_index = ~0; u32 fib_index = ~0; u32 table_id = ~0; fib_protocol_t fib_proto = FIB_PROTOCOL_IP4; int rv = 0; reg = vl_api_client_index_to_registration (mp->client_index); if (!reg) return; VALIDATE_SW_IF_INDEX (mp); sw_if_index = ntohl (mp->sw_if_index); if (mp->is_ipv6) fib_proto = FIB_PROTOCOL_IP6; fib_index = fib_table_get_index_for_sw_if_index (fib_proto, sw_if_index); if (fib_index != ~0) { fib_table = fib_table_get (fib_index, fib_proto); table_id = fib_table->ft_table_id; } BAD_SW_IF_INDEX_LABEL; send_sw_interface_get_table_reply (reg, mp->context, rv, table_id); } static void vl_api_sw_interface_set_unnumbered_t_handler (vl_api_sw_interface_set_unnumbered_t * mp) { vl_api_sw_interface_set_unnumbered_reply_t *rmp; int rv = 0; vnet_main_t *vnm = vnet_get_main (); u32 sw_if_index = ntohl (mp->sw_if_index); u32 unnumbered_sw_if_index = ntohl (mp->unnumbered_sw_if_index); /* * The API message field names are backwards from * the underlying data structure names. * It's not worth changing them now. */ if (!vnet_sw_interface_is_api_valid (vnm, unnumbered_sw_if_index)) { rv = VNET_API_ERROR_INVALID_SW_IF_INDEX; goto done; } /* Only check the "use loop0" field when setting the binding */ if (mp->is_add && !vnet_sw_interface_is_api_valid (vnm, sw_if_index)) { rv = VNET_API_ERROR_INVALID_SW_IF_INDEX_2; goto done; } vnet_sw_interface_update_unnumbered (unnumbered_sw_if_index, sw_if_index, mp->is_add); done: REPLY_MACRO (VL_API_SW_INTERFACE_SET_UNNUMBERED_REPLY); } static void vl_api_sw_interface_clear_stats_t_handler (vl_api_sw_interface_clear_stats_t * mp) { vl_api_sw_interface_clear_stats_reply_t *rmp; vnet_main_t *vnm = vnet_get_main (); vnet_interface_main_t *im = &vnm->interface_main; vlib_simple_counter_main_t *sm; vlib_combined_counter_main_t *cm; static vnet_main_t **my_vnet_mains; int i, j, n_counters; int rv = 0; if (mp->sw_if_index != ~0) VALIDATE_SW_IF_INDEX (mp); vec_reset_length (my_vnet_mains); for (i = 0; i < vec_len (vnet_mains); i++) { if (vnet_mains[i]) vec_add1 (my_vnet_mains, vnet_mains[i]); } if (vec_len (vnet_mains) == 0) vec_add1 (my_vnet_mains, vnm); n_counters = vec_len (im->combined_sw_if_counters); for (j = 0; j < n_counters; j++) { for (i = 0; i < vec_len (my_vnet_mains); i++) { im = &my_vnet_mains[i]->interface_main; cm = im->combined_sw_if_counters + j; if (mp->sw_if_index == (u32) ~ 0) vlib_clear_combined_counters (cm); else vlib_zero_combined_counter (cm, ntohl (mp->sw_if_index)); } } n_counters = vec_len (im->sw_if_counters); for (j = 0; j < n_counters; j++) { for (i = 0; i < vec_len (my_vnet_mains); i++) { im = &my_vnet_mains[i]->interface_main; sm = im->sw_if_counters + j; if (mp->sw_if_index == (u32) ~ 0) vlib_clear_simple_counters (sm); else vlib_zero_simple_counter (sm, ntohl (mp->sw_if_index)); } } BAD_SW_IF_INDEX_LABEL; REPLY_MACRO (VL_API_SW_INTERFACE_CLEAR_STATS_REPLY); } /* * Events used for sw_interface_events */ enum api_events { API_LINK_STATE_UP_EVENT = 1 << 1, API_LINK_STATE_DOWN_EVENT = 1 << 2, API_ADMIN_UP_EVENT = 1 << 3, API_ADMIN_DOWN_EVENT = 1 << 4, API_SW_INTERFACE_ADD_EVENT = 1 << 5, API_SW_INTERFACE_DEL_EVENT = 1 << 6, }; static void send_sw_interface_event (vpe_api_main_t * am, vpe_client_registration_t * reg, vl_api_registration_t * vl_reg, u32 sw_if_index, enum api_events events) { vl_api_sw_interface_event_t *mp; mp = vl_msg_api_alloc (sizeof (*mp)); clib_memset (mp, 0, sizeof (*mp)); mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_EVENT); mp->sw_if_index = ntohl (sw_if_index); mp->client_index = reg->client_index; mp->pid = reg->client_pid; mp->admin_up_down = events & API_ADMIN_UP_EVENT ? 1 : 0; mp->link_up_down = events & API_LINK_STATE_UP_EVENT ? 1 : 0; mp->deleted = events & API_SW_INTERFACE_DEL_EVENT ? 1 : 0; vl_api_send_msg (vl_reg, (u8 *) mp); } static uword link_state_process (vlib_main_t * vm, vlib_node_runtime_t * rt, vlib_frame_t * f) { vpe_api_main_t *vam = &vpe_api_main; uword *event_by_sw_if_index = 0; vpe_client_registration_t *reg; int i; vl_api_registration_t *vl_reg; uword event_type; uword *event_data = 0; u32 sw_if_index; vam->link_state_process_up = 1; while (1) { vlib_process_wait_for_event (vm); /* Batch up events */ while ((event_type = vlib_process_get_events (vm, &event_data)) != ~0) { for (i = 0; i < vec_len (event_data); i++) { sw_if_index = event_data[i]; vec_validate_init_empty (event_by_sw_if_index, sw_if_index, 0); event_by_sw_if_index[sw_if_index] |= event_type; } vec_reset_length (event_data); } for (i = 0; i < vec_len (event_by_sw_if_index); i++) { if (event_by_sw_if_index[i] == 0) continue; /* *INDENT-OFF* */ pool_foreach(reg, vam->interface_events_registrations, ({ vl_reg = vl_api_client_index_to_registration (reg->client_index); if (vl_reg) send_sw_interface_event (vam, reg, vl_reg, i, event_by_sw_if_index[i]); })); /* *INDENT-ON* */ } vec_reset_length (event_by_sw_if_index); } return 0; } static clib_error_t *link_up_down_function (vnet_main_t * vm, u32 hw_if_index, u32 flags); static clib_error_t *admin_up_down_function (vnet_main_t * vm, u32 hw_if_index, u32 flags); static clib_error_t *sw_interface_add_del_function (vnet_main_t * vm, u32 sw_if_index, u32 flags); /* *INDENT-OFF* */ VLIB_REGISTER_NODE (link_state_process_node,static) = { .function = link_state_process, .type = VLIB_NODE_TYPE_PROCESS, .name = "vpe-link-state-process", }; /* *INDENT-ON* */ VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (admin_up_down_function); VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION (link_up_down_function); VNET_SW_INTERFACE_ADD_DEL_FUNCTION (sw_interface_add_del_function); static clib_error_t * link_up_down_function (vnet_main_t * vm, u32 hw_if_index, u32 flags) { vpe_api_main_t *vam = &vpe_api_main; vnet_hw_interface_t *hi = vnet_get_hw_interface (vm, hw_if_index); if (vam->link_state_process_up) { enum api_events event = flags ? API_LINK_STATE_UP_EVENT : API_LINK_STATE_DOWN_EVENT; vlib_process_signal_event (vam->vlib_main, link_state_process_node.index, event, hi->sw_if_index); } return 0; } static clib_error_t * admin_up_down_function (vnet_main_t * vm, u32 sw_if_index, u32 flags) { vpe_api_main_t *vam = &vpe_api_main; /* * Note: it's perfectly fair to set a subif admin up / admin down. * Note the subtle distinction between this routine and the previous * routine. */ if (vam->link_state_process_up) { enum api_events event = flags ? API_ADMIN_UP_EVENT : API_ADMIN_DOWN_EVENT; vlib_process_signal_event (vam->vlib_main, link_state_process_node.index, event, sw_if_index); } return 0; } static clib_error_t * sw_interface_add_del_function (vnet_main_t * vm, u32 sw_if_index, u32 flags) { vpe_api_main_t *vam = &vpe_api_main; if (vam->link_state_process_up) { enum api_events event = flags ? API_SW_INTERFACE_ADD_EVENT : API_SW_INTERFACE_DEL_EVENT; vlib_process_signal_event (vam->vlib_main, link_state_process_node.index, event, sw_if_index); } return 0; } static void vl_api_sw_interface_tag_add_del_t_handler (vl_api_sw_interface_tag_add_del_t * mp) { vnet_main_t *vnm = vnet_get_main (); vl_api_sw_interface_tag_add_del_reply_t *rmp; int rv = 0; u8 *tag; u32 sw_if_index = ntohl (mp->sw_if_index); VALIDATE_SW_IF_INDEX (mp); if (mp->is_add) { if (mp->tag[0] == 0) { rv = VNET_API_ERROR_INVALID_VALUE; goto out; } mp->tag[ARRAY_LEN (mp->tag) - 1] = 0; tag = format (0, "%s%c", mp->tag, 0); vnet_set_sw_interface_tag (vnm, tag, sw_if_index); } else vnet_clear_sw_interface_tag (vnm, sw_if_index); BAD_SW_IF_INDEX_LABEL; out: REPLY_MACRO (VL_API_SW_INTERFACE_TAG_ADD_DEL_REPLY); } static void vl_api_sw_interface_set_mac_address_t_handler (vl_api_sw_interface_set_mac_address_t * mp) { vl_api_sw_interface_set_mac_address_reply_t *rmp; vnet_main_t *vnm = vnet_get_main (); u32 sw_if_index = ntohl (mp->sw_if_index); vnet_sw_interface_t *si; clib_error_t *error; int rv = 0; VALIDATE_SW_IF_INDEX (mp); si = vnet_get_sw_interface (vnm, sw_if_index); error = vnet_hw_interface_change_mac_address (vnm, si->hw_if_index, mp->mac_address); if (error) { rv = VNET_API_ERROR_UNIMPLEMENTED; clib_error_report (error); goto out; } BAD_SW_IF_INDEX_LABEL; out: REPLY_MACRO (VL_API_SW_INTERFACE_SET_MAC_ADDRESS_REPLY); } static void vl_api_sw_interface_get_mac_address_t_handler (vl_api_sw_interface_get_mac_address_t * mp) { vl_api_sw_interface_get_mac_address_reply_t *rmp; vl_api_registration_t *reg; vnet_main_t *vnm = vnet_get_main (); u32 sw_if_index = ntohl (mp->sw_if_index); vnet_sw_interface_t *si; ethernet_interface_t *eth_if = 0; int rv = 0; VALIDATE_SW_IF_INDEX (mp); si = vnet_get_sup_sw_interface (vnm, sw_if_index); if (si->type == VNET_SW_INTERFACE_TYPE_HARDWARE) eth_if = ethernet_get_interface (&ethernet_main, si->hw_if_index); BAD_SW_IF_INDEX_LABEL; reg = vl_api_client_index_to_registration (mp->client_index); if (!reg) return; rmp = vl_msg_api_alloc (sizeof (*rmp)); rmp->_vl_msg_id = htons (VL_API_SW_INTERFACE_GET_MAC_ADDRESS_REPLY); rmp->context = mp->context; rmp->retval = htonl (rv); if (!rv && eth_if) memcpy (rmp->mac_address, eth_if->address, 6); vl_api_send_msg (reg, (u8 *) rmp); } static void vl_api_sw_interface_set_rx_mode_t_handler (vl_api_sw_interface_set_rx_mode_t * mp) { vl_api_sw_interface_set_rx_mode_reply_t *rmp; vnet_main_t *vnm = vnet_get_main (); u32 sw_if_index = ntohl (mp->sw_if_index); vnet_sw_interface_t *si; clib_error_t *error; int rv = 0; VALIDATE_SW_IF_INDEX (mp); si = vnet_get_sw_interface (vnm, sw_if_index); if (si->type != VNET_SW_INTERFACE_TYPE_HARDWARE) { rv = VNET_API_ERROR_INVALID_VALUE; goto bad_sw_if_index; } error = set_hw_interface_change_rx_mode (vnm, si->hw_if_index, mp->queue_id_valid, ntohl (mp->queue_id), mp->mode); if (error) { rv = VNET_API_ERROR_UNIMPLEMENTED; clib_error_report (error); goto out; } BAD_SW_IF_INDEX_LABEL; out: REPLY_MACRO (VL_API_SW_INTERFACE_SET_RX_MODE_REPLY); } static void send_interface_rx_placement_details (vpe_api_main_t * am, vl_api_registration_t * rp, u32 sw_if_index, u32 worker_id, u32 queue_id, u8 mode, u32 context) { vl_api_sw_interface_rx_placement_details_t *mp; mp = vl_msg_api_alloc (sizeof (*mp)); clib_memset (mp, 0, sizeof (*mp)); mp->_vl_msg_id = htons (VL_API_SW_INTERFACE_RX_PLACEMENT_DETAILS); mp->sw_if_index = htonl (sw_if_index); mp->queue_id = htonl (queue_id); mp->worker_id = htonl (worker_id); mp->mode = mode; mp->context = context; vl_api_send_msg (rp, (u8 *) mp); } static void vl_api_sw_interface_rx_placement_dump_t_handler (vl_api_sw_interface_rx_placement_dump_t * mp) { vnet_main_t *vnm = vnet_get_main (); vpe_api_main_t *am = &vpe_api_main; u32 sw_if_index = ntohl (mp->sw_if_index); vl_api_registration_t *reg; reg = vl_api_client_index_to_registration (mp->client_index); if (!reg) return; if (sw_if_index == ~0) { vnet_device_input_runtime_t *rt; vnet_device_and_queue_t *dq; vlib_node_t *pn = vlib_get_node_by_name (am->vlib_main, (u8 *) "device-input"); uword si; int index = 0; /* *INDENT-OFF* */ foreach_vlib_main (({ clib_bitmap_foreach (si, pn->sibling_bitmap, ({ rt = vlib_node_get_runtime_data (this_vlib_main, si); vec_foreach (dq, rt->devices_and_queues) { vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, dq->hw_if_index); send_interface_rx_placement_details (am, reg, hw->sw_if_index, index, dq->queue_id, dq->mode, mp->context); } })); index++; })); /* *INDENT-ON* */ } else { int i; vnet_sw_interface_t *si; if (!vnet_sw_if_index_is_api_valid (sw_if_index)) { clib_warning ("sw_if_index %u does not exist", sw_if_index); goto bad_sw_if_index; } si = vnet_get_sw_interface (vnm, sw_if_index); if (si->type != VNET_SW_INTERFACE_TYPE_HARDWARE) { clib_warning ("interface type is not HARDWARE! P2P, PIPE and SUB" " interfaces are not supported"); goto bad_sw_if_index; } vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, si->hw_if_index); for (i = 0; i < vec_len (hw->dq_runtime_index_by_queue); i++) { send_interface_rx_placement_details (am, reg, hw->sw_if_index, hw->input_node_thread_index_by_queue [i], i, hw->rx_mode_by_queue[i], mp->context); } } BAD_SW_IF_INDEX_LABEL; } static void vl_api_sw_interface_set_rx_placement_t_handler (vl_api_sw_interface_set_rx_placement_t * mp) { vl_api_sw_interface_set_rx_placement_reply_t *rmp; vnet_main_t *vnm = vnet_get_main (); u32 sw_if_index = ntohl (mp->sw_if_index); vnet_sw_interface_t *si; clib_error_t *error = 0; int rv = 0; VALIDATE_SW_IF_INDEX (mp); si = vnet_get_sw_interface (vnm, sw_if_index); if (si->type != VNET_SW_INTERFACE_TYPE_HARDWARE) { rv = VNET_API_ERROR_INVALID_VALUE; goto bad_sw_if_index; } error = set_hw_interface_rx_placement (si->hw_if_index, ntohl (mp->queue_id), ntohl (mp->worker_id), mp->is_main); if (error) { rv = VNET_API_ERROR_UNIMPLEMENTED; clib_error_report (error); goto out; } BAD_SW_IF_INDEX_LABEL; out: REPLY_MACRO (VL_API_SW_INTERFACE_SET_RX_PLACEMENT_REPLY); } static void vl_api_create_vlan_subif_t_handler (vl_api_create_vlan_subif_t * mp) { vl_api_create_vlan_subif_reply_t *rmp; vnet_main_t *vnm = vnet_get_main (); u32 sw_if_index = (u32) ~ 0; vnet_hw_interface_t *hi; int rv = 0; u32 id; vnet_sw_interface_t template; uword *p; vnet_interface_main_t *im = &vnm->interface_main; u64 sup_and_sub_key; vl_api_registration_t *reg; clib_error_t *error; VALIDATE_SW_IF_INDEX (mp); hi = vnet_get_sup_hw_interface (vnm, ntohl (mp->sw_if_index)); if (hi->bond_info == VNET_HW_INTERFACE_BOND_INFO_SLAVE) { rv = VNET_API_ERROR_BOND_SLAVE_NOT_ALLOWED; goto out; } id = ntohl (mp->vlan_id); if (id == 0 || id > 4095) { rv = VNET_API_ERROR_INVALID_VLAN; goto out; } sup_and_sub_key = ((u64) (hi->sw_if_index) << 32) | (u64) id; p = hash_get_mem (im->sw_if_index_by_sup_and_sub, &sup_and_sub_key); if (p) { rv = VNET_API_ERROR_VLAN_ALREADY_EXISTS; goto out; } clib_memset (&template, 0, sizeof (template)); template.type = VNET_SW_INTERFACE_TYPE_SUB; template.flood_class = VNET_FLOOD_CLASS_NORMAL; template.sup_sw_if_index = hi->sw_if_index; template.sub.id = id; template.sub.eth.raw_flags = 0; template.sub.eth.flags.one_tag = 1; template.sub.eth.outer_vlan_id = id; template.sub.eth.flags.exact_match = 1; error = vnet_create_sw_interface (vnm, &template, &sw_if_index); if (error) { clib_error_report (error); rv = VNET_API_ERROR_INVALID_REGISTRATION; goto out; } u64 *kp = clib_mem_alloc (sizeof (*kp)); *kp = sup_and_sub_key; hash_set (hi->sub_interface_sw_if_index_by_id, id, sw_if_index); hash_set_mem (im->sw_if_index_by_sup_and_sub, kp, sw_if_index); BAD_SW_IF_INDEX_LABEL; out: reg = vl_api_client_index_to_registration (mp->client_index); if (!reg) return; rmp = vl_msg_api_alloc (sizeof (*rmp)); rmp->_vl_msg_id = htons (VL_API_CREATE_VLAN_SUBIF_REPLY); rmp->context = mp->context; rmp->retval = htonl (rv); rmp->sw_if_index = htonl (sw_if_index); vl_api_send_msg (reg, (u8 *) rmp); } static void vl_api_create_subif_t_handler (vl_api_create_subif_t * mp) { vl_api_create_subif_reply_t *rmp; vnet_main_t *vnm = vnet_get_main (); u32 sw_if_index = ~0; int rv = 0; u32 sub_id; vnet_sw_interface_t *si; vnet_hw_interface_t *hi; vnet_sw_interface_t template; uword *p; vnet_interface_main_t *im = &vnm->interface_main; u64 sup_and_sub_key; clib_error_t *error; VALIDATE_SW_IF_INDEX (mp); si = vnet_get_sup_sw_interface (vnm, ntohl (mp->sw_if_index)); hi = vnet_get_sup_hw_interface (vnm, ntohl (mp->sw_if_index)); if (hi->bond_info == VNET_HW_INTERFACE_BOND_INFO_SLAVE) { rv = VNET_API_ERROR_BOND_SLAVE_NOT_ALLOWED; goto out; } sw_if_index = si->sw_if_index; sub_id = ntohl (mp->sub_id); sup_and_sub_key = ((u64) (sw_if_index) << 32) | (u64) sub_id; p = hash_get_mem (im->sw_if_index_by_sup_and_sub, &sup_and_sub_key); if (p) { if (CLIB_DEBUG > 0) clib_warning ("sup sw_if_index %d, sub id %d already exists\n", sw_if_index, sub_id); rv = VNET_API_ERROR_SUBIF_ALREADY_EXISTS; goto out; } clib_memset (&template, 0, sizeof (template)); template.type = VNET_SW_INTERFACE_TYPE_SUB; template.flood_class = VNET_FLOOD_CLASS_NORMAL; template.sup_sw_if_index = sw_if_index; template.sub.id = sub_id; template.sub.eth.flags.no_tags = mp->no_tags; template.sub.eth.flags.one_tag = mp->one_tag; template.sub.eth.flags.two_tags = mp->two_tags; template.sub.eth.flags.dot1ad = mp->dot1ad; template.sub.eth.flags.exact_match = mp->exact_match; template.sub.eth.flags.default_sub = mp->default_sub; template.sub.eth.flags.outer_vlan_id_any = mp->outer_vlan_id_any; template.sub.eth.flags.inner_vlan_id_any = mp->inner_vlan_id_any; template.sub.eth.outer_vlan_id = ntohs (mp->outer_vlan_id); template.sub.eth.inner_vlan_id = ntohs (mp->inner_vlan_id); error = vnet_create_sw_interface (vnm, &template, &sw_if_index); if (error) { clib_error_report (error); rv = VNET_API_ERROR_SUBIF_CREATE_FAILED; goto out; } u64 *kp = clib_mem_alloc (sizeof (*kp)); *kp = sup_and_sub_key; hash_set (hi->sub_interface_sw_if_index_by_id, sub_id, sw_if_index); hash_set_mem (im->sw_if_index_by_sup_and_sub, kp, sw_if_index); BAD_SW_IF_INDEX_LABEL; out: /* *INDENT-OFF* */ REPLY_MACRO2(VL_API_CREATE_SUBIF_REPLY, ({ rmp->sw_if_index = ntohl(sw_if_index); })); /* *INDENT-ON* */ } static void vl_api_delete_subif_t_handler (vl_api_delete_subif_t * mp) { vl_api_delete_subif_reply_t *rmp; int rv; rv = vnet_delete_sub_interface (ntohl (mp->sw_if_index)); REPLY_MACRO (VL_API_DELETE_SUBIF_REPLY); } static void vl_api_interface_name_renumber_t_handler (vl_api_interface_name_renumber_t * mp) { vl_api_interface_name_renumber_reply_t *rmp; int rv = 0; VALIDATE_SW_IF_INDEX (mp); rv = vnet_interface_name_renumber (ntohl (mp->sw_if_index), ntohl (mp->new_show_dev_instance)); BAD_SW_IF_INDEX_LABEL; REPLY_MACRO (VL_API_INTERFACE_NAME_RENUMBER_REPLY); } static void vl_api_create_loopback_t_handler (vl_api_create_loopback_t * mp) { vl_api_create_loopback_reply_t *rmp; u32 sw_if_index; int rv; rv = vnet_create_loopback_interface (&sw_if_index, mp->mac_address, 0, 0); /* *INDENT-OFF* */ REPLY_MACRO2(VL_API_CREATE_LOOPBACK_REPLY, ({ rmp->sw_if_index = ntohl (sw_if_index); })); /* *INDENT-ON* */ } static void vl_api_create_loopback_instance_t_handler (vl_api_create_loopback_instance_t * mp) { vl_api_create_loopback_instance_reply_t *rmp; u32 sw_if_index; u8 is_specified = mp->is_specified; u32 user_instance = ntohl (mp->user_instance); int rv; rv = vnet_create_loopback_interface (&sw_if_index, mp->mac_address, is_specified, user_instance); /* *INDENT-OFF* */ REPLY_MACRO2(VL_API_CREATE_LOOPBACK_INSTANCE_REPLY, ({ rmp->sw_if_index = ntohl (sw_if_index); })); /* *INDENT-ON* */ } static void vl_api_delete_loopback_t_handler (vl_api_delete_loopback_t * mp) { vl_api_delete_loopback_reply_t *rmp; u32 sw_if_index; int rv; sw_if_index = ntohl (mp->sw_if_index); rv = vnet_delete_loopback_interface (sw_if_index); REPLY_MACRO (VL_API_DELETE_LOOPBACK_REPLY); } static void vl_api_collect_detailed_interface_stats_t_handler (vl_api_collect_detailed_interface_stats_t * mp) { vl_api_collect_detailed_interface_stats_reply_t *rmp; int rv = 0; rv = vnet_sw_interface_stats_collect_enable_disable (ntohl (mp->sw_if_index), mp->enable_disable); REPLY_MACRO (VL_API_COLLECT_DETAILED_INTERFACE_STATS_REPLY); } /* * vpe_api_hookup * Add vpe's API message handlers to the table. * vlib has already mapped shared memory and * added the client registration handlers. * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process() */ #define vl_msg_name_crc_list #include <vnet/interface.api.h> #undef vl_msg_name_crc_list static void setup_message_id_table (api_main_t * am) { #define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id); foreach_vl_msg_name_crc_interface; #undef _ } pub_sub_handler (interface_events, INTERFACE_EVENTS); static clib_error_t * interface_api_hookup (vlib_main_t * vm) { api_main_t *am = &api_main; #define _(N,n) \ vl_msg_api_set_handlers(VL_API_##N, #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_vpe_api_msg; #undef _ /* * Set up the (msg_name, crc, message-id) table */ setup_message_id_table (am); return 0; } VLIB_API_INIT_FUNCTION (interface_api_hookup); /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */