Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015 Cisco and/or its affiliates. |
| 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at: |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
| 15 | /* |
| 16 | * ip/ip_init.c: ip generic initialization |
| 17 | * |
| 18 | * Copyright (c) 2008 Eliot Dresselhaus |
| 19 | * |
| 20 | * Permission is hereby granted, free of charge, to any person obtaining |
| 21 | * a copy of this software and associated documentation files (the |
| 22 | * "Software"), to deal in the Software without restriction, including |
| 23 | * without limitation the rights to use, copy, modify, merge, publish, |
| 24 | * distribute, sublicense, and/or sell copies of the Software, and to |
| 25 | * permit persons to whom the Software is furnished to do so, subject to |
| 26 | * the following conditions: |
| 27 | * |
| 28 | * The above copyright notice and this permission notice shall be |
| 29 | * included in all copies or substantial portions of the Software. |
| 30 | * |
| 31 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 32 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 33 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 34 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
| 35 | * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| 36 | * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| 37 | * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 38 | */ |
| 39 | |
| 40 | #include <vnet/ip/ip.h> |
| 41 | |
| 42 | ip_main_t ip_main; |
| 43 | |
| 44 | clib_error_t * |
| 45 | ip_main_init (vlib_main_t * vm) |
| 46 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 47 | ip_main_t *im = &ip_main; |
| 48 | clib_error_t *error = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 49 | |
| 50 | memset (im, 0, sizeof (im[0])); |
| 51 | |
| 52 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 53 | ip_protocol_info_t *pi; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 54 | u32 i; |
| 55 | |
| 56 | #define ip_protocol(n,s) \ |
| 57 | do { \ |
| 58 | vec_add2 (im->protocol_infos, pi, 1); \ |
| 59 | pi->protocol = n; \ |
| 60 | pi->name = (u8 *) #s; \ |
| 61 | } while (0); |
| 62 | |
| 63 | #include "protocols.def" |
| 64 | |
| 65 | #undef ip_protocol |
| 66 | |
| 67 | im->protocol_info_by_name = hash_create_string (0, sizeof (uword)); |
| 68 | for (i = 0; i < vec_len (im->protocol_infos); i++) |
| 69 | { |
| 70 | pi = im->protocol_infos + i; |
| 71 | |
| 72 | hash_set_mem (im->protocol_info_by_name, pi->name, i); |
| 73 | hash_set (im->protocol_info_by_protocol, pi->protocol, i); |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 78 | tcp_udp_port_info_t *pi; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 79 | u32 i; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 80 | static char *port_names[] = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 81 | #define ip_port(s,n) #s, |
| 82 | #include "ports.def" |
| 83 | #undef ip_port |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 84 | }; |
| 85 | static u16 ports[] = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 86 | #define ip_port(s,n) n, |
| 87 | #include "ports.def" |
| 88 | #undef ip_port |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 89 | }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 90 | |
| 91 | vec_resize (im->port_infos, ARRAY_LEN (port_names)); |
| 92 | im->port_info_by_name = hash_create_string (0, sizeof (uword)); |
| 93 | |
| 94 | for (i = 0; i < vec_len (im->port_infos); i++) |
| 95 | { |
| 96 | pi = im->port_infos + i; |
| 97 | pi->port = clib_host_to_net_u16 (ports[i]); |
| 98 | pi->name = (u8 *) port_names[i]; |
| 99 | hash_set_mem (im->port_info_by_name, pi->name, i); |
| 100 | hash_set (im->port_info_by_port, pi->port, i); |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | if ((error = vlib_call_init_function (vm, vnet_main_init))) |
| 105 | return error; |
| 106 | |
| 107 | if ((error = vlib_call_init_function (vm, ip4_init))) |
| 108 | return error; |
| 109 | |
| 110 | if ((error = vlib_call_init_function (vm, ip6_init))) |
| 111 | return error; |
| 112 | |
| 113 | if ((error = vlib_call_init_function (vm, icmp4_init))) |
| 114 | return error; |
| 115 | |
| 116 | if ((error = vlib_call_init_function (vm, icmp6_init))) |
| 117 | return error; |
| 118 | |
| 119 | if ((error = vlib_call_init_function (vm, ip6_hop_by_hop_init))) |
| 120 | return error; |
| 121 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 122 | if ((error = vlib_call_init_function (vm, udp_local_init))) |
| 123 | return error; |
| 124 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 125 | if ((error = vlib_call_init_function (vm, udp_init))) |
| 126 | return error; |
| 127 | |
| 128 | if ((error = vlib_call_init_function (vm, ip_classify_init))) |
| 129 | return error; |
| 130 | |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 131 | if ((error = vlib_call_init_function (vm, in_out_acl_init))) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 132 | return error; |
| 133 | |
Matus Fabian | 70e6a8d | 2016-06-20 08:10:42 -0700 | [diff] [blame] | 134 | if ((error = vlib_call_init_function (vm, policer_classify_init))) |
| 135 | return error; |
| 136 | |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 137 | if ((error = vlib_call_init_function (vm, flow_classify_init))) |
| 138 | return error; |
| 139 | |
Dave Barach | 6545716 | 2017-10-10 17:53:14 -0400 | [diff] [blame] | 140 | if ((error = vlib_call_init_function (vm, dns_init))) |
| 141 | return error; |
| 142 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 143 | return error; |
| 144 | } |
| 145 | |
| 146 | VLIB_INIT_FUNCTION (ip_main_init); |
Dave Barach | 5331c72 | 2016-08-17 11:54:30 -0400 | [diff] [blame] | 147 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 148 | |
| 149 | /* |
| 150 | * fd.io coding-style-patch-verification: ON |
| 151 | * |
| 152 | * Local Variables: |
| 153 | * eval: (c-set-style "gnu") |
| 154 | * End: |
| 155 | */ |