Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 2 | * plugin.c: plugin handling |
| 3 | * |
| 4 | * Copyright (c) 2011 Cisco and/or its affiliates. |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at: |
| 8 | * |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | * |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | */ |
| 17 | |
| 18 | #include <vlib/unix/plugin.h> |
Damjan Marion | 3b46cba | 2017-01-23 21:13:45 +0100 | [diff] [blame] | 19 | #include <vppinfra/elf.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 20 | #include <dlfcn.h> |
| 21 | #include <dirent.h> |
| 22 | |
| 23 | plugin_main_t vlib_plugin_main; |
| 24 | |
Damjan Marion | 3b46cba | 2017-01-23 21:13:45 +0100 | [diff] [blame] | 25 | char *vlib_plugin_path __attribute__ ((weak)); |
| 26 | char *vlib_plugin_path = ""; |
| 27 | char *vlib_plugin_app_version __attribute__ ((weak)); |
| 28 | char *vlib_plugin_app_version = ""; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 29 | |
Damjan Marion | f935e33 | 2017-01-06 14:33:05 +0100 | [diff] [blame] | 30 | void * |
| 31 | vlib_get_plugin_symbol (char *plugin_name, char *symbol_name) |
| 32 | { |
| 33 | plugin_main_t *pm = &vlib_plugin_main; |
| 34 | uword *p; |
| 35 | plugin_info_t *pi; |
| 36 | |
| 37 | if ((p = hash_get_mem (pm->plugin_by_name_hash, plugin_name)) == 0) |
| 38 | return 0; |
| 39 | |
| 40 | pi = vec_elt_at_index (pm->plugin_info, p[0]); |
| 41 | return dlsym (pi->handle, symbol_name); |
| 42 | } |
| 43 | |
Damjan Marion | 3b46cba | 2017-01-23 21:13:45 +0100 | [diff] [blame] | 44 | static char * |
| 45 | str_array_to_vec (char *array, int len) |
| 46 | { |
| 47 | char c, *r = 0; |
| 48 | int n = 0; |
| 49 | |
| 50 | do |
| 51 | { |
| 52 | c = array[n]; |
| 53 | vec_add1 (r, c); |
| 54 | } |
| 55 | while (c && ++n < len); |
| 56 | |
| 57 | if (c) |
| 58 | vec_add1 (r, 0); |
| 59 | |
| 60 | return r; |
| 61 | } |
| 62 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 63 | static int |
| 64 | load_one_plugin (plugin_main_t * pm, plugin_info_t * pi, int from_early_init) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 65 | { |
Damjan Marion | 3b46cba | 2017-01-23 21:13:45 +0100 | [diff] [blame] | 66 | void *handle; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 67 | clib_error_t *error; |
Damjan Marion | 3b46cba | 2017-01-23 21:13:45 +0100 | [diff] [blame] | 68 | elf_main_t em = { 0 }; |
| 69 | elf_section_t *section; |
| 70 | u8 *data; |
| 71 | char *version_required; |
| 72 | vlib_plugin_registration_t *reg; |
| 73 | plugin_config_t *pc = 0; |
| 74 | uword *p; |
| 75 | |
| 76 | if (elf_read_file (&em, (char *) pi->filename)) |
| 77 | return -1; |
| 78 | |
| 79 | error = elf_get_section_by_name (&em, ".vlib_plugin_registration", |
| 80 | §ion); |
| 81 | if (error) |
| 82 | { |
| 83 | clib_warning ("Not a plugin: %s\n", (char *) pi->name); |
| 84 | return -1; |
| 85 | } |
| 86 | |
| 87 | data = elf_get_section_contents (&em, section->index, 1); |
| 88 | reg = (vlib_plugin_registration_t *) data; |
| 89 | |
| 90 | if (vec_len (data) != sizeof (*reg)) |
| 91 | { |
| 92 | clib_warning ("vlib_plugin_registration size mismatch in plugin %s\n", |
| 93 | (char *) pi->name); |
| 94 | goto error; |
| 95 | } |
| 96 | |
Mohsin Kazmi | 06bc260 | 2018-03-22 23:45:23 +0100 | [diff] [blame] | 97 | if (pm->plugins_default_disable) |
| 98 | reg->default_disabled = 1; |
| 99 | |
Damjan Marion | 3b46cba | 2017-01-23 21:13:45 +0100 | [diff] [blame] | 100 | p = hash_get_mem (pm->config_index_by_name, pi->name); |
| 101 | if (p) |
| 102 | { |
| 103 | pc = vec_elt_at_index (pm->configs, p[0]); |
| 104 | if (pc->is_disabled) |
| 105 | { |
| 106 | clib_warning ("Plugin disabled: %s", pi->name); |
| 107 | goto error; |
| 108 | } |
| 109 | if (reg->default_disabled && pc->is_enabled == 0) |
| 110 | { |
Damjan Marion | 1bfb0dd | 2017-03-22 11:08:39 +0100 | [diff] [blame] | 111 | clib_warning ("Plugin disabled (default): %s", pi->name); |
Damjan Marion | 3b46cba | 2017-01-23 21:13:45 +0100 | [diff] [blame] | 112 | goto error; |
| 113 | } |
| 114 | } |
| 115 | else if (reg->default_disabled) |
| 116 | { |
Damjan Marion | 1bfb0dd | 2017-03-22 11:08:39 +0100 | [diff] [blame] | 117 | clib_warning ("Plugin disabled (default): %s", pi->name); |
Damjan Marion | 3b46cba | 2017-01-23 21:13:45 +0100 | [diff] [blame] | 118 | goto error; |
| 119 | } |
| 120 | |
| 121 | version_required = str_array_to_vec ((char *) ®->version_required, |
| 122 | sizeof (reg->version_required)); |
| 123 | |
| 124 | if ((strlen (version_required) > 0) && |
| 125 | (strncmp (vlib_plugin_app_version, version_required, |
| 126 | strlen (version_required)))) |
| 127 | { |
| 128 | clib_warning ("Plugin %s version mismatch: %s != %s", |
| 129 | pi->name, vlib_plugin_app_version, reg->version_required); |
| 130 | if (!(pc && pc->skip_version_check == 1)) |
| 131 | { |
| 132 | vec_free (version_required); |
| 133 | goto error; |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | vec_free (version_required); |
| 138 | vec_free (data); |
| 139 | elf_main_free (&em); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 140 | |
Damjan Marion | f935e33 | 2017-01-06 14:33:05 +0100 | [diff] [blame] | 141 | handle = dlopen ((char *) pi->filename, RTLD_LAZY); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 142 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 143 | if (handle == 0) |
| 144 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 145 | clib_warning ("%s", dlerror ()); |
Damjan Marion | c9fc77c | 2017-04-25 21:07:52 +0200 | [diff] [blame] | 146 | clib_warning ("Failed to load plugin '%s'", pi->name); |
Dave Barach | 3464c86 | 2018-03-12 17:38:31 -0400 | [diff] [blame] | 147 | goto error; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 148 | } |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 149 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 150 | pi->handle = handle; |
| 151 | |
Damjan Marion | 3b46cba | 2017-01-23 21:13:45 +0100 | [diff] [blame] | 152 | reg = dlsym (pi->handle, "vlib_plugin_registration"); |
Ole Troan | 3b3688f | 2016-06-15 14:29:08 +0200 | [diff] [blame] | 153 | |
Damjan Marion | 3b46cba | 2017-01-23 21:13:45 +0100 | [diff] [blame] | 154 | if (reg == 0) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 155 | { |
Damjan Marion | 3b46cba | 2017-01-23 21:13:45 +0100 | [diff] [blame] | 156 | /* This should never happen unless somebody chagnes registration macro */ |
| 157 | clib_warning ("Missing plugin registration in plugin '%s'", pi->name); |
Damjan Marion | 72d2c4f | 2018-04-05 21:32:29 +0200 | [diff] [blame] | 158 | dlclose (pi->handle); |
| 159 | goto error; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 160 | } |
| 161 | |
Damjan Marion | 3b46cba | 2017-01-23 21:13:45 +0100 | [diff] [blame] | 162 | pi->reg = reg; |
| 163 | pi->version = str_array_to_vec ((char *) ®->version, |
| 164 | sizeof (reg->version)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 165 | |
Ole Troan | e4ad8cc | 2017-02-07 11:22:33 +0100 | [diff] [blame] | 166 | if (reg->early_init) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 167 | { |
Damjan Marion | 3b46cba | 2017-01-23 21:13:45 +0100 | [diff] [blame] | 168 | clib_error_t *(*ei) (vlib_main_t *); |
| 169 | void *h; |
| 170 | |
| 171 | h = dlsym (pi->handle, reg->early_init); |
| 172 | if (h) |
| 173 | { |
| 174 | ei = h; |
| 175 | error = (*ei) (pm->vlib_main); |
| 176 | if (error) |
| 177 | { |
| 178 | clib_error_report (error); |
Damjan Marion | 72d2c4f | 2018-04-05 21:32:29 +0200 | [diff] [blame] | 179 | dlclose (pi->handle); |
| 180 | goto error; |
Damjan Marion | 3b46cba | 2017-01-23 21:13:45 +0100 | [diff] [blame] | 181 | } |
| 182 | } |
| 183 | else |
| 184 | clib_warning ("Plugin %s: early init function %s set but not found", |
| 185 | (char *) pi->name, reg->early_init); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 186 | } |
| 187 | |
Damjan Marion | 1bfb0dd | 2017-03-22 11:08:39 +0100 | [diff] [blame] | 188 | if (reg->description) |
| 189 | clib_warning ("Loaded plugin: %s (%s)", pi->name, reg->description); |
| 190 | else |
| 191 | clib_warning ("Loaded plugin: %s", pi->name); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 192 | |
| 193 | return 0; |
Damjan Marion | 3b46cba | 2017-01-23 21:13:45 +0100 | [diff] [blame] | 194 | error: |
| 195 | vec_free (data); |
| 196 | elf_main_free (&em); |
| 197 | return -1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 198 | } |
| 199 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 200 | static u8 ** |
| 201 | split_plugin_path (plugin_main_t * pm) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 202 | { |
| 203 | int i; |
| 204 | u8 **rv = 0; |
| 205 | u8 *path = pm->plugin_path; |
| 206 | u8 *this = 0; |
| 207 | |
| 208 | for (i = 0; i < vec_len (pm->plugin_path); i++) |
| 209 | { |
| 210 | if (path[i] != ':') |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 211 | { |
| 212 | vec_add1 (this, path[i]); |
| 213 | continue; |
| 214 | } |
| 215 | vec_add1 (this, 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 216 | vec_add1 (rv, this); |
| 217 | this = 0; |
| 218 | } |
| 219 | if (this) |
| 220 | { |
| 221 | vec_add1 (this, 0); |
| 222 | vec_add1 (rv, this); |
| 223 | } |
| 224 | return rv; |
| 225 | } |
| 226 | |
Dave Barach | a83bc30 | 2017-02-25 16:38:12 -0500 | [diff] [blame] | 227 | static int |
| 228 | plugin_name_sort_cmp (void *a1, void *a2) |
| 229 | { |
| 230 | plugin_info_t *p1 = a1; |
| 231 | plugin_info_t *p2 = a2; |
| 232 | |
| 233 | return strcmp ((char *) p1->name, (char *) p2->name); |
| 234 | } |
| 235 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 236 | int |
| 237 | vlib_load_new_plugins (plugin_main_t * pm, int from_early_init) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 238 | { |
| 239 | DIR *dp; |
| 240 | struct dirent *entry; |
| 241 | struct stat statb; |
| 242 | uword *p; |
| 243 | plugin_info_t *pi; |
| 244 | u8 **plugin_path; |
Dave Barach | a83bc30 | 2017-02-25 16:38:12 -0500 | [diff] [blame] | 245 | u32 *load_fail_indices = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 246 | int i; |
| 247 | |
| 248 | plugin_path = split_plugin_path (pm); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 249 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 250 | for (i = 0; i < vec_len (plugin_path); i++) |
| 251 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 252 | dp = opendir ((char *) plugin_path[i]); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 253 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 254 | if (dp == 0) |
| 255 | continue; |
| 256 | |
| 257 | while ((entry = readdir (dp))) |
| 258 | { |
| 259 | u8 *plugin_name; |
Damjan Marion | f935e33 | 2017-01-06 14:33:05 +0100 | [diff] [blame] | 260 | u8 *filename; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 261 | |
| 262 | if (pm->plugin_name_filter) |
| 263 | { |
| 264 | int j; |
| 265 | for (j = 0; j < vec_len (pm->plugin_name_filter); j++) |
| 266 | if (entry->d_name[j] != pm->plugin_name_filter[j]) |
| 267 | goto next; |
| 268 | } |
| 269 | |
Damjan Marion | f935e33 | 2017-01-06 14:33:05 +0100 | [diff] [blame] | 270 | filename = format (0, "%s/%s%c", plugin_path[i], entry->d_name, 0); |
Ole Troan | 3b3688f | 2016-06-15 14:29:08 +0200 | [diff] [blame] | 271 | |
| 272 | /* Only accept .so */ |
Damjan Marion | f935e33 | 2017-01-06 14:33:05 +0100 | [diff] [blame] | 273 | char *ext = strrchr ((const char *) filename, '.'); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 274 | /* unreadable */ |
| 275 | if (!ext || (strcmp (ext, ".so") != 0) || |
Damjan Marion | f935e33 | 2017-01-06 14:33:05 +0100 | [diff] [blame] | 276 | stat ((char *) filename, &statb) < 0) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 277 | { |
| 278 | ignore: |
Damjan Marion | f935e33 | 2017-01-06 14:33:05 +0100 | [diff] [blame] | 279 | vec_free (filename); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 280 | continue; |
| 281 | } |
| 282 | |
| 283 | /* a dir or other things which aren't plugins */ |
| 284 | if (!S_ISREG (statb.st_mode)) |
| 285 | goto ignore; |
| 286 | |
Damjan Marion | f935e33 | 2017-01-06 14:33:05 +0100 | [diff] [blame] | 287 | plugin_name = format (0, "%s%c", entry->d_name, 0); |
Dave Barach | a83bc30 | 2017-02-25 16:38:12 -0500 | [diff] [blame] | 288 | /* Have we seen this plugin already? */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 289 | p = hash_get_mem (pm->plugin_by_name_hash, plugin_name); |
| 290 | if (p == 0) |
| 291 | { |
Dave Barach | a83bc30 | 2017-02-25 16:38:12 -0500 | [diff] [blame] | 292 | /* No, add it to the plugin vector */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 293 | vec_add2 (pm->plugin_info, pi, 1); |
| 294 | pi->name = plugin_name; |
Damjan Marion | f935e33 | 2017-01-06 14:33:05 +0100 | [diff] [blame] | 295 | pi->filename = filename; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 296 | pi->file_info = statb; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 297 | hash_set_mem (pm->plugin_by_name_hash, plugin_name, |
| 298 | pi - pm->plugin_info); |
| 299 | } |
| 300 | next: |
| 301 | ; |
| 302 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 303 | closedir (dp); |
| 304 | vec_free (plugin_path[i]); |
| 305 | } |
| 306 | vec_free (plugin_path); |
Dave Barach | a83bc30 | 2017-02-25 16:38:12 -0500 | [diff] [blame] | 307 | |
| 308 | |
| 309 | /* |
| 310 | * Sort the plugins by name. This is important. |
| 311 | * API traces contain absolute message numbers. |
| 312 | * Loading plugins in directory (vs. alphabetical) order |
| 313 | * makes trace replay incredibly fragile. |
| 314 | */ |
| 315 | vec_sort_with_function (pm->plugin_info, plugin_name_sort_cmp); |
| 316 | |
| 317 | /* |
| 318 | * Attempt to load the plugins |
| 319 | */ |
| 320 | for (i = 0; i < vec_len (pm->plugin_info); i++) |
| 321 | { |
| 322 | pi = vec_elt_at_index (pm->plugin_info, i); |
| 323 | |
| 324 | if (load_one_plugin (pm, pi, from_early_init)) |
| 325 | { |
| 326 | /* Make a note of any which fail to load */ |
| 327 | vec_add1 (load_fail_indices, i); |
| 328 | hash_unset_mem (pm->plugin_by_name_hash, pi->name); |
| 329 | vec_free (pi->name); |
| 330 | vec_free (pi->filename); |
| 331 | } |
| 332 | } |
| 333 | |
| 334 | /* Remove plugin info vector elements corresponding to load failures */ |
| 335 | if (vec_len (load_fail_indices) > 0) |
| 336 | { |
| 337 | for (i = vec_len (load_fail_indices) - 1; i >= 0; i--) |
| 338 | vec_delete (pm->plugin_info, 1, load_fail_indices[i]); |
| 339 | vec_free (load_fail_indices); |
| 340 | } |
| 341 | |
| 342 | /* Recreate the plugin name hash */ |
| 343 | for (i = 0; i < vec_len (pm->plugin_info); i++) |
| 344 | { |
| 345 | pi = vec_elt_at_index (pm->plugin_info, i); |
| 346 | hash_unset_mem (pm->plugin_by_name_hash, pi->name); |
| 347 | hash_set_mem (pm->plugin_by_name_hash, pi->name, pi - pm->plugin_info); |
| 348 | } |
| 349 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 350 | return 0; |
| 351 | } |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 352 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 353 | int |
| 354 | vlib_plugin_early_init (vlib_main_t * vm) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 355 | { |
| 356 | plugin_main_t *pm = &vlib_plugin_main; |
| 357 | |
Damjan Marion | 3b46cba | 2017-01-23 21:13:45 +0100 | [diff] [blame] | 358 | if (pm->plugin_path == 0) |
| 359 | pm->plugin_path = format (0, "%s%c", vlib_plugin_path, 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 360 | |
| 361 | clib_warning ("plugin path %s", pm->plugin_path); |
| 362 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 363 | pm->plugin_by_name_hash = hash_create_string (0, sizeof (uword)); |
| 364 | pm->vlib_main = vm; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 365 | |
| 366 | return vlib_load_new_plugins (pm, 1 /* from_early_init */ ); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 367 | } |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 368 | |
Dave Barach | 0a32b60 | 2017-11-28 18:55:09 -0500 | [diff] [blame] | 369 | u8 * |
| 370 | vlib_get_vat_plugin_path (void) |
| 371 | { |
| 372 | plugin_main_t *pm = &vlib_plugin_main; |
| 373 | return (pm->vat_plugin_path); |
| 374 | } |
| 375 | |
| 376 | u8 * |
| 377 | vlib_get_vat_plugin_name_filter (void) |
| 378 | { |
| 379 | plugin_main_t *pm = &vlib_plugin_main; |
| 380 | return (pm->vat_plugin_name_filter); |
| 381 | } |
| 382 | |
Shwetha Bhandari | f24e5d7 | 2016-07-11 23:08:54 +0100 | [diff] [blame] | 383 | static clib_error_t * |
| 384 | vlib_plugins_show_cmd_fn (vlib_main_t * vm, |
Ed Warnicke | 853e720 | 2016-08-12 11:42:26 -0700 | [diff] [blame] | 385 | unformat_input_t * input, vlib_cli_command_t * cmd) |
Shwetha Bhandari | f24e5d7 | 2016-07-11 23:08:54 +0100 | [diff] [blame] | 386 | { |
| 387 | plugin_main_t *pm = &vlib_plugin_main; |
| 388 | u8 *s = 0; |
| 389 | u8 *key = 0; |
Damjan Marion | 3b46cba | 2017-01-23 21:13:45 +0100 | [diff] [blame] | 390 | uword value = 0; |
Shwetha Bhandari | f24e5d7 | 2016-07-11 23:08:54 +0100 | [diff] [blame] | 391 | int index = 1; |
Damjan Marion | 3b46cba | 2017-01-23 21:13:45 +0100 | [diff] [blame] | 392 | plugin_info_t *pi; |
Shwetha Bhandari | f24e5d7 | 2016-07-11 23:08:54 +0100 | [diff] [blame] | 393 | |
Damjan Marion | 3b46cba | 2017-01-23 21:13:45 +0100 | [diff] [blame] | 394 | s = format (s, " Plugin path is: %s\n\n", pm->plugin_path); |
Damjan Marion | 1bfb0dd | 2017-03-22 11:08:39 +0100 | [diff] [blame] | 395 | s = format (s, " %-41s%-33s%s\n", "Plugin", "Version", "Description"); |
Shwetha Bhandari | f24e5d7 | 2016-07-11 23:08:54 +0100 | [diff] [blame] | 396 | |
Damjan Marion | 3b46cba | 2017-01-23 21:13:45 +0100 | [diff] [blame] | 397 | /* *INDENT-OFF* */ |
Ed Warnicke | 853e720 | 2016-08-12 11:42:26 -0700 | [diff] [blame] | 398 | hash_foreach_mem (key, value, pm->plugin_by_name_hash, |
Damjan Marion | 3b46cba | 2017-01-23 21:13:45 +0100 | [diff] [blame] | 399 | { |
| 400 | if (key != 0) |
| 401 | { |
| 402 | pi = vec_elt_at_index (pm->plugin_info, value); |
Damjan Marion | 1bfb0dd | 2017-03-22 11:08:39 +0100 | [diff] [blame] | 403 | s = format (s, "%3d. %-40s %-32s %s\n", index, key, pi->version, |
| 404 | pi->reg->description ? pi->reg->description : ""); |
Damjan Marion | 3b46cba | 2017-01-23 21:13:45 +0100 | [diff] [blame] | 405 | index++; |
| 406 | } |
| 407 | }); |
| 408 | /* *INDENT-ON* */ |
Shwetha Bhandari | f24e5d7 | 2016-07-11 23:08:54 +0100 | [diff] [blame] | 409 | |
Ed Warnicke | 853e720 | 2016-08-12 11:42:26 -0700 | [diff] [blame] | 410 | vlib_cli_output (vm, "%v", s); |
| 411 | vec_free (s); |
Shwetha Bhandari | f24e5d7 | 2016-07-11 23:08:54 +0100 | [diff] [blame] | 412 | return 0; |
| 413 | } |
| 414 | |
Dave Barach | fe6bdfd | 2017-01-20 19:50:09 -0500 | [diff] [blame] | 415 | /* *INDENT-OFF* */ |
Ed Warnicke | 853e720 | 2016-08-12 11:42:26 -0700 | [diff] [blame] | 416 | VLIB_CLI_COMMAND (plugins_show_cmd, static) = |
| 417 | { |
Dave Barach | fe6bdfd | 2017-01-20 19:50:09 -0500 | [diff] [blame] | 418 | .path = "show plugins", |
| 419 | .short_help = "show loaded plugins", |
| 420 | .function = vlib_plugins_show_cmd_fn, |
| 421 | }; |
| 422 | /* *INDENT-ON* */ |
| 423 | |
Damjan Marion | 3b46cba | 2017-01-23 21:13:45 +0100 | [diff] [blame] | 424 | static clib_error_t * |
| 425 | config_one_plugin (vlib_main_t * vm, char *name, unformat_input_t * input) |
| 426 | { |
| 427 | plugin_main_t *pm = &vlib_plugin_main; |
| 428 | plugin_config_t *pc; |
| 429 | clib_error_t *error = 0; |
| 430 | uword *p; |
| 431 | int is_enable = 0; |
| 432 | int is_disable = 0; |
| 433 | int skip_version_check = 0; |
| 434 | |
| 435 | if (pm->config_index_by_name == 0) |
| 436 | pm->config_index_by_name = hash_create_string (0, sizeof (uword)); |
| 437 | |
| 438 | p = hash_get_mem (pm->config_index_by_name, name); |
| 439 | |
| 440 | if (p) |
| 441 | { |
| 442 | error = clib_error_return (0, "plugin '%s' already configured", name); |
| 443 | goto done; |
| 444 | } |
| 445 | |
| 446 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 447 | { |
| 448 | if (unformat (input, "enable")) |
| 449 | is_enable = 1; |
| 450 | else if (unformat (input, "disable")) |
| 451 | is_disable = 1; |
| 452 | else if (unformat (input, "skip-version-check")) |
| 453 | skip_version_check = 1; |
| 454 | else |
| 455 | { |
| 456 | error = clib_error_return (0, "unknown input '%U'", |
| 457 | format_unformat_error, input); |
| 458 | goto done; |
| 459 | } |
| 460 | } |
| 461 | |
| 462 | if (is_enable && is_disable) |
| 463 | { |
| 464 | error = clib_error_return (0, "please specify either enable or disable" |
| 465 | " for plugin '%s'", name); |
| 466 | goto done; |
| 467 | } |
| 468 | |
| 469 | vec_add2 (pm->configs, pc, 1); |
| 470 | hash_set_mem (pm->config_index_by_name, name, pc - pm->configs); |
| 471 | pc->is_enabled = is_enable; |
| 472 | pc->is_disabled = is_disable; |
| 473 | pc->skip_version_check = skip_version_check; |
| 474 | pc->name = name; |
| 475 | |
| 476 | done: |
| 477 | return error; |
| 478 | } |
| 479 | |
| 480 | clib_error_t * |
| 481 | vlib_plugin_config (vlib_main_t * vm, unformat_input_t * input) |
| 482 | { |
| 483 | plugin_main_t *pm = &vlib_plugin_main; |
| 484 | clib_error_t *error = 0; |
| 485 | unformat_input_t in; |
| 486 | |
| 487 | unformat_init (&in, 0, 0); |
| 488 | |
| 489 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 490 | { |
| 491 | u8 *s, *v; |
| 492 | if (unformat (input, "%s %v", &s, &v)) |
| 493 | { |
| 494 | if (strncmp ((const char *) s, "plugins", 8) == 0) |
| 495 | { |
| 496 | if (vec_len (in.buffer) > 0) |
| 497 | vec_add1 (in.buffer, ' '); |
| 498 | vec_add (in.buffer, v, vec_len (v)); |
| 499 | } |
| 500 | } |
| 501 | else |
| 502 | { |
| 503 | error = clib_error_return (0, "unknown input '%U'", |
| 504 | format_unformat_error, input); |
| 505 | goto done; |
| 506 | } |
| 507 | |
| 508 | vec_free (v); |
| 509 | vec_free (s); |
| 510 | } |
| 511 | done: |
| 512 | input = ∈ |
| 513 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 514 | { |
| 515 | unformat_input_t sub_input; |
| 516 | u8 *s = 0; |
| 517 | if (unformat (input, "path %s", &s)) |
| 518 | pm->plugin_path = s; |
Dave Barach | 0a32b60 | 2017-11-28 18:55:09 -0500 | [diff] [blame] | 519 | else if (unformat (input, "name-filter %s", &s)) |
| 520 | pm->plugin_name_filter = s; |
| 521 | else if (unformat (input, "vat-path %s", &s)) |
| 522 | pm->vat_plugin_path = s; |
| 523 | else if (unformat (input, "vat-name-filter %s", &s)) |
| 524 | pm->vat_plugin_name_filter = s; |
Mohsin Kazmi | 06bc260 | 2018-03-22 23:45:23 +0100 | [diff] [blame] | 525 | else if (unformat (input, "plugin default %U", |
| 526 | unformat_vlib_cli_sub_input, &sub_input)) |
| 527 | { |
| 528 | pm->plugins_default_disable = |
| 529 | unformat (&sub_input, "disable") ? 1 : 0; |
| 530 | unformat_free (&sub_input); |
| 531 | } |
Damjan Marion | 3b46cba | 2017-01-23 21:13:45 +0100 | [diff] [blame] | 532 | else if (unformat (input, "plugin %s %U", &s, |
| 533 | unformat_vlib_cli_sub_input, &sub_input)) |
| 534 | { |
| 535 | error = config_one_plugin (vm, (char *) s, &sub_input); |
| 536 | unformat_free (&sub_input); |
| 537 | if (error) |
| 538 | goto done2; |
| 539 | } |
| 540 | else |
| 541 | { |
| 542 | error = clib_error_return (0, "unknown input '%U'", |
| 543 | format_unformat_error, input); |
| 544 | { |
| 545 | vec_free (s); |
| 546 | goto done2; |
| 547 | } |
| 548 | } |
| 549 | } |
| 550 | |
| 551 | done2: |
| 552 | unformat_free (&in); |
| 553 | return error; |
| 554 | } |
| 555 | |
| 556 | /* discard whole 'plugins' section, as it is already consumed prior to |
| 557 | plugin load */ |
| 558 | static clib_error_t * |
| 559 | plugins_config (vlib_main_t * vm, unformat_input_t * input) |
| 560 | { |
| 561 | u8 *junk; |
| 562 | |
| 563 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 564 | { |
| 565 | if (unformat (input, "%s", &junk)) |
| 566 | { |
| 567 | vec_free (junk); |
| 568 | return 0; |
| 569 | } |
| 570 | else |
| 571 | return clib_error_return (0, "unknown input '%U'", |
| 572 | format_unformat_error, input); |
| 573 | } |
| 574 | return 0; |
| 575 | } |
| 576 | |
| 577 | VLIB_CONFIG_FUNCTION (plugins_config, "plugins"); |
| 578 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 579 | /* |
| 580 | * fd.io coding-style-patch-verification: ON |
| 581 | * |
| 582 | * Local Variables: |
| 583 | * eval: (c-set-style "gnu") |
| 584 | * End: |
| 585 | */ |