aboutsummaryrefslogtreecommitdiffstats
path: root/src/vnet/pg/init.c
blob: 5db9c00ffc477af542a37ea0d1d8d54b4ad31413 (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
/*
 * 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.
 */
/*
 * pg_init.c: VLIB packet generator
 *
 * 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/pg/pg.h>

/* Global main structure. */
pg_main_t pg_main;

static clib_error_t *
pg_init (vlib_main_t * vm)
{
  clib_error_t *error;
  pg_main_t *pg = &pg_main;
  vlib_thread_main_t *vtm = vlib_get_thread_main ();
  u32 num_threads = 1 /* main thread */  + vtm->n_threads;

  pg->if_index_by_if_id = hash_create (0, sizeof (uword));

  if ((error = vlib_call_init_function (vm, vnet_main_init)))
    goto done;

  if ((error = vlib_call_init_function (vm, pg_cli_init)))
    goto done;

  vec_validate (pg->replay_buffers_by_thread, num_threads);

done:
  return error;
}

VLIB_INIT_FUNCTION (pg_init);

/*
 * fd.io coding-style-patch-verification: ON
 *
 * Local Variables:
 * eval: (c-set-style "gnu")
 * End:
 */
* The SW if index assigned to this sub-interface */ u32 sw_if_index; /** * The SW IF index assigned to the main interface of which this is a sub. */ u32 main_sw_if_index; } lisp_gpe_sub_interface_t; extern index_t lisp_gpe_sub_interface_find_or_create_and_lock (const ip_address_t * lrloc, u32 eid_table_id, u32 vni); extern u8 *format_lisp_gpe_sub_interface (u8 * s, va_list * ap); extern void lisp_gpe_sub_interface_unlock (index_t itf); extern const lisp_gpe_sub_interface_t *lisp_gpe_sub_interface_get (index_t itf); /** * A DB of all L3 sub-interfaces. The key is:{VNI,l-RLOC} */ extern uword *lisp_gpe_sub_interfaces_sw_if_index; /** * @brief * Get a VNET L3 interface matching the local-RLOC and VNI * Called from the data-plane */ always_inline u32 lisp_gpe_sub_interface_find_ip6 (const ip6_address_t * addr, u32 vni) { lisp_gpe_sub_interface_key_t key; const uword *p; key.local_rloc.ip.v6.as_u64[0] = addr->as_u64[0]; key.local_rloc.ip.v6.as_u64[1] = addr->as_u64[1]; key.local_rloc.version = IP6; key.vni = vni; p = hash_get_mem (&lisp_gpe_sub_interfaces_sw_if_index, &key); if (NULL != p) return p[0]; return (INDEX_INVALID); } /** * @brief * Get a VNET L3 interface matching the local-RLOC and VNI * Called from the data-plane */ always_inline index_t lisp_gpe_sub_interface_find_ip4 (const ip4_address_t * addr, u32 vni) { lisp_gpe_sub_interface_key_t key; const uword *p; key.local_rloc.ip.v4.as_u32 = addr->as_u32; key.local_rloc.version = IP4; key.vni = vni; p = hash_get_mem (&lisp_gpe_sub_interfaces_sw_if_index, &key); if (NULL != p) return p[0]; return (INDEX_INVALID); } /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */ #endif