blob: 5cac9abc8fef646b5d9312ff3288bad3aa2ce9d2 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
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 Marion3b46cba2017-01-23 21:13:45 +010019#include <vppinfra/elf.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070020#include <dlfcn.h>
21#include <dirent.h>
22
23plugin_main_t vlib_plugin_main;
24
Dave Barach8dc954a2020-02-05 17:31:09 -050025#define PLUGIN_LOG_DBG(...) \
26 do {vlib_log_debug (vlib_plugin_main.logger, __VA_ARGS__);} while(0)
27#define PLUGIN_LOG_ERR(...) \
28 do {vlib_log_err (vlib_plugin_main.logger, __VA_ARGS__);} while(0)
29#define PLUGIN_LOG_NOTICE(...) \
30 do {vlib_log_notice (vlib_plugin_main.logger, __VA_ARGS__);} while(0)
31
Damjan Marion3b46cba2017-01-23 21:13:45 +010032char *vlib_plugin_path __attribute__ ((weak));
33char *vlib_plugin_path = "";
34char *vlib_plugin_app_version __attribute__ ((weak));
35char *vlib_plugin_app_version = "";
Ed Warnickecb9cada2015-12-08 15:45:58 -070036
Damjan Marionf935e332017-01-06 14:33:05 +010037void *
Sergey Nikiforove917bf72023-01-14 00:15:13 +050038vlib_get_plugin_symbol (const char *plugin_name, const char *symbol_name)
Damjan Marionf935e332017-01-06 14:33:05 +010039{
40 plugin_main_t *pm = &vlib_plugin_main;
41 uword *p;
42 plugin_info_t *pi;
43
44 if ((p = hash_get_mem (pm->plugin_by_name_hash, plugin_name)) == 0)
45 return 0;
46
47 pi = vec_elt_at_index (pm->plugin_info, p[0]);
48 return dlsym (pi->handle, symbol_name);
49}
50
Damjan Marion3b46cba2017-01-23 21:13:45 +010051static char *
52str_array_to_vec (char *array, int len)
53{
54 char c, *r = 0;
55 int n = 0;
56
57 do
58 {
59 c = array[n];
60 vec_add1 (r, c);
61 }
62 while (c && ++n < len);
63
64 if (c)
65 vec_add1 (r, 0);
66
67 return r;
68}
69
Dave Barach8dc954a2020-02-05 17:31:09 -050070static u8 *
71extract (u8 * sp, u8 * ep)
72{
73 u8 *rv = 0;
74
75 while (sp <= ep)
76 {
77 vec_add1 (rv, *sp);
78 sp++;
79 }
80 vec_add1 (rv, 0);
81 return rv;
82}
83
Dave Barach500ba9f2020-10-15 17:07:03 -040084/*
85 * If a plugin .so contains a ".vlib_plugin_r2" section,
86 * this function converts the vlib_plugin_r2_t to
87 * a vlib_plugin_registration_t.
88 */
89
90static clib_error_t *
91r2_to_reg (elf_main_t * em, vlib_plugin_r2_t * r2,
92 vlib_plugin_registration_t * reg)
93{
94 clib_error_t *error;
95 elf_section_t *section;
96 uword data_segment_offset;
97 u8 *data;
98
99 /* It turns out that the strings land in the ".data" section */
100 error = elf_get_section_by_name (em, ".data", &section);
101 if (error)
102 return error;
103 data = elf_get_section_contents (em, section->index, 1);
104
105 /*
106 * Offsets in the ".vlib_plugin_r2" section
107 * need to have the data section base subtracted from them.
108 * The offset is in the first 8 bytes of the ".data" section
109 */
110
111 data_segment_offset = *((uword *) data);
112
113 /* Relocate pointers, subtract data_segment_offset */
114#define _(a) r2->a.data_segment_offset -= data_segment_offset;
115 foreach_r2_string_field;
116#undef _
117
118 if (r2->version.length >= ARRAY_LEN (reg->version) - 1)
119 return clib_error_return (0, "Version string too long");
120
121 if (r2->version_required.length >= ARRAY_LEN (reg->version_required) - 1)
122 return clib_error_return (0, "Version-required string too long");
123
124 if (r2->overrides.length >= ARRAY_LEN (reg->overrides) - 1)
125 return clib_error_return (0, "Override string too long");
126
127 /* Compatibility with C-initializer */
128 memcpy ((void *) reg->version, data + r2->version.data_segment_offset,
129 r2->version.length);
130 memcpy ((void *) reg->version_required,
131 data + r2->version_required.data_segment_offset,
132 r2->version_required.length);
133 memcpy ((void *) reg->overrides, data + r2->overrides.data_segment_offset,
134 r2->overrides.length);
135
136 if (r2->early_init.length > 0)
137 {
138 u8 *ei = 0;
139 vec_validate (ei, r2->early_init.length + 1);
140 memcpy (ei, data + r2->early_init.data_segment_offset,
141 r2->early_init.length);
142 reg->early_init = (void *) ei;
143 }
144
145 if (r2->description.length > 0)
146 {
147 u8 *desc = 0;
148 vec_validate (desc, r2->description.length + 1);
149 memcpy (desc, data + r2->description.data_segment_offset,
150 r2->description.length);
151 reg->description = (void *) desc;
152 }
153 vec_free (data);
154 return 0;
155}
156
157
Dave Barach9b8ffd92016-07-08 08:13:45 -0400158static int
159load_one_plugin (plugin_main_t * pm, plugin_info_t * pi, int from_early_init)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700160{
Damjan Marion3b46cba2017-01-23 21:13:45 +0100161 void *handle;
Dave Barach500ba9f2020-10-15 17:07:03 -0400162 int reread_reg = 1;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400163 clib_error_t *error;
Damjan Marion3b46cba2017-01-23 21:13:45 +0100164 elf_main_t em = { 0 };
165 elf_section_t *section;
166 u8 *data;
167 char *version_required;
168 vlib_plugin_registration_t *reg;
Dave Barach500ba9f2020-10-15 17:07:03 -0400169 vlib_plugin_r2_t *r2;
Damjan Marion3b46cba2017-01-23 21:13:45 +0100170 plugin_config_t *pc = 0;
171 uword *p;
172
173 if (elf_read_file (&em, (char *) pi->filename))
174 return -1;
175
Dave Barach500ba9f2020-10-15 17:07:03 -0400176 /* New / improved (well, not really) registration structure? */
177 error = elf_get_section_by_name (&em, ".vlib_plugin_r2", &section);
178 if (error == 0)
179 {
180 data = elf_get_section_contents (&em, section->index, 1);
181 r2 = (vlib_plugin_r2_t *) data;
182 reg = clib_mem_alloc (sizeof (*reg));
183 memset (reg, 0, sizeof (*reg));
184
185 reg->default_disabled = r2->default_disabled != 0;
186 error = r2_to_reg (&em, r2, reg);
187 if (error)
188 {
189 PLUGIN_LOG_ERR ("Bad r2 registration: %s\n", (char *) pi->name);
190 return -1;
191 }
192 if (pm->plugins_default_disable)
193 reg->default_disabled = 1;
194 reread_reg = 0;
195 goto process_reg;
196 }
Damjan Marionc7ef4f32022-04-04 18:04:28 +0200197 else
198 clib_error_free (error);
Dave Barach500ba9f2020-10-15 17:07:03 -0400199
Damjan Marion3b46cba2017-01-23 21:13:45 +0100200 error = elf_get_section_by_name (&em, ".vlib_plugin_registration",
201 &section);
202 if (error)
203 {
Dave Barach8dc954a2020-02-05 17:31:09 -0500204 PLUGIN_LOG_ERR ("Not a plugin: %s\n", (char *) pi->name);
Damjan Marion3b46cba2017-01-23 21:13:45 +0100205 return -1;
206 }
207
208 data = elf_get_section_contents (&em, section->index, 1);
209 reg = (vlib_plugin_registration_t *) data;
210
211 if (vec_len (data) != sizeof (*reg))
212 {
Dave Barach8dc954a2020-02-05 17:31:09 -0500213 PLUGIN_LOG_ERR ("vlib_plugin_registration size mismatch in plugin %s\n",
214 (char *) pi->name);
Damjan Marion3b46cba2017-01-23 21:13:45 +0100215 goto error;
216 }
217
Mohsin Kazmi06bc2602018-03-22 23:45:23 +0100218 if (pm->plugins_default_disable)
219 reg->default_disabled = 1;
220
Dave Barach500ba9f2020-10-15 17:07:03 -0400221process_reg:
Damjan Marion3b46cba2017-01-23 21:13:45 +0100222 p = hash_get_mem (pm->config_index_by_name, pi->name);
223 if (p)
224 {
225 pc = vec_elt_at_index (pm->configs, p[0]);
226 if (pc->is_disabled)
227 {
Dave Barach8dc954a2020-02-05 17:31:09 -0500228 PLUGIN_LOG_NOTICE ("Plugin disabled: %s", pi->name);
Damjan Marion3b46cba2017-01-23 21:13:45 +0100229 goto error;
230 }
231 if (reg->default_disabled && pc->is_enabled == 0)
232 {
Dave Barach8dc954a2020-02-05 17:31:09 -0500233 PLUGIN_LOG_NOTICE ("Plugin disabled (default): %s", pi->name);
Damjan Marion3b46cba2017-01-23 21:13:45 +0100234 goto error;
235 }
236 }
237 else if (reg->default_disabled)
238 {
Dave Barach8dc954a2020-02-05 17:31:09 -0500239 PLUGIN_LOG_NOTICE ("Plugin disabled (default): %s", pi->name);
Damjan Marion3b46cba2017-01-23 21:13:45 +0100240 goto error;
241 }
242
243 version_required = str_array_to_vec ((char *) &reg->version_required,
244 sizeof (reg->version_required));
245
246 if ((strlen (version_required) > 0) &&
247 (strncmp (vlib_plugin_app_version, version_required,
248 strlen (version_required))))
249 {
Dave Barach8dc954a2020-02-05 17:31:09 -0500250 PLUGIN_LOG_ERR ("Plugin %s version mismatch: %s != %s",
251 pi->name, vlib_plugin_app_version,
252 reg->version_required);
Damjan Marion3b46cba2017-01-23 21:13:45 +0100253 if (!(pc && pc->skip_version_check == 1))
254 {
255 vec_free (version_required);
256 goto error;
257 }
258 }
259
Dave Barach8dc954a2020-02-05 17:31:09 -0500260 /*
261 * Collect names of plugins overridden (disabled) by the
262 * current plugin.
263 */
264 if (reg->overrides[0])
265 {
266 const char *overrides = reg->overrides;
267 u8 *override_name_copy, *overridden_by_name_copy;
268 u8 *sp, *ep;
269 uword *p;
270
271 sp = ep = (u8 *) overrides;
272
273 while (1)
274 {
275 if (*sp == 0
276 || (sp >= (u8 *) overrides + ARRAY_LEN (reg->overrides)))
277 break;
278 if (*sp == ' ' || *sp == ',')
279 {
280 sp++;
281 continue;
282 }
283 ep = sp;
284 while (*ep && *ep != ' ' && *ep != ',' &&
285 ep < (u8 *) overrides + ARRAY_LEN (reg->overrides))
286 ep++;
287 if (*ep == ' ' || *ep == ',')
288 ep--;
289
290 override_name_copy = extract (sp, ep);
291
292
293 p = hash_get_mem (pm->plugin_overrides_by_name_hash,
294 override_name_copy);
295 /* Already overridden... */
296 if (p)
297 vec_free (override_name_copy);
298 else
299 {
300 overridden_by_name_copy = format (0, "%s%c", pi->name, 0);
301 hash_set_mem (pm->plugin_overrides_by_name_hash,
302 override_name_copy, overridden_by_name_copy);
303 }
304 sp = *ep ? ep + 1 : ep;
305 }
306 }
Damjan Marion3b46cba2017-01-23 21:13:45 +0100307 vec_free (version_required);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700308
Eric Sunee98c9d2022-02-02 10:53:34 -0800309#if defined(RTLD_DEEPBIND)
Damjan Marionef4ddfa2021-09-15 15:08:28 +0200310 handle = dlopen ((char *) pi->filename,
311 RTLD_LAZY | (reg->deep_bind ? RTLD_DEEPBIND : 0));
Eric Sunee98c9d2022-02-02 10:53:34 -0800312#else
313 handle = dlopen ((char *) pi->filename, RTLD_LAZY);
314#endif
Dave Barach9b8ffd92016-07-08 08:13:45 -0400315
Ed Warnickecb9cada2015-12-08 15:45:58 -0700316 if (handle == 0)
317 {
Dave Barach8dc954a2020-02-05 17:31:09 -0500318 PLUGIN_LOG_ERR ("%s", dlerror ());
319 PLUGIN_LOG_ERR ("Failed to load plugin '%s'", pi->name);
Dave Barach3464c862018-03-12 17:38:31 -0400320 goto error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700321 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400322
Ed Warnickecb9cada2015-12-08 15:45:58 -0700323 pi->handle = handle;
324
Dave Barach500ba9f2020-10-15 17:07:03 -0400325 if (reread_reg)
326 reg = dlsym (pi->handle, "vlib_plugin_registration");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700327
Damjan Marion3b46cba2017-01-23 21:13:45 +0100328 pi->reg = reg;
329 pi->version = str_array_to_vec ((char *) &reg->version,
330 sizeof (reg->version));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700331
Ole Troane4ad8cc2017-02-07 11:22:33 +0100332 if (reg->early_init)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700333 {
Damjan Marion3b46cba2017-01-23 21:13:45 +0100334 clib_error_t *(*ei) (vlib_main_t *);
335 void *h;
336
337 h = dlsym (pi->handle, reg->early_init);
338 if (h)
339 {
340 ei = h;
341 error = (*ei) (pm->vlib_main);
342 if (error)
343 {
Dave Barach8dc954a2020-02-05 17:31:09 -0500344 u8 *err = format (0, "%s: %U%c", pi->name,
345 format_clib_error, error, 0);
346 PLUGIN_LOG_ERR ((char *) err);
347 clib_error_free (error);
Damjan Marion72d2c4f2018-04-05 21:32:29 +0200348 dlclose (pi->handle);
Dave Barach8dc954a2020-02-05 17:31:09 -0500349 pi->handle = 0;
Damjan Marion72d2c4f2018-04-05 21:32:29 +0200350 goto error;
Damjan Marion3b46cba2017-01-23 21:13:45 +0100351 }
352 }
353 else
Dave Barach8dc954a2020-02-05 17:31:09 -0500354 PLUGIN_LOG_ERR ("Plugin %s: early init function %s set but not found",
355 (char *) pi->name, reg->early_init);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700356 }
357
Damjan Marion1bfb0dd2017-03-22 11:08:39 +0100358 if (reg->description)
Dave Barach8dc954a2020-02-05 17:31:09 -0500359 PLUGIN_LOG_NOTICE ("Loaded plugin: %s (%s)", pi->name, reg->description);
Damjan Marion1bfb0dd2017-03-22 11:08:39 +0100360 else
Dave Barach8dc954a2020-02-05 17:31:09 -0500361 PLUGIN_LOG_NOTICE ("Loaded plugin: %s", pi->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700362
Dave Barach8dc954a2020-02-05 17:31:09 -0500363 vec_free (data);
364 elf_main_free (&em);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700365 return 0;
Dave Barach8dc954a2020-02-05 17:31:09 -0500366
Damjan Marion3b46cba2017-01-23 21:13:45 +0100367error:
368 vec_free (data);
369 elf_main_free (&em);
370 return -1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700371}
372
Dave Barach9b8ffd92016-07-08 08:13:45 -0400373static u8 **
374split_plugin_path (plugin_main_t * pm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700375{
376 int i;
377 u8 **rv = 0;
378 u8 *path = pm->plugin_path;
379 u8 *this = 0;
380
381 for (i = 0; i < vec_len (pm->plugin_path); i++)
382 {
383 if (path[i] != ':')
Dave Barach9b8ffd92016-07-08 08:13:45 -0400384 {
385 vec_add1 (this, path[i]);
386 continue;
387 }
388 vec_add1 (this, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700389 vec_add1 (rv, this);
390 this = 0;
391 }
392 if (this)
393 {
394 vec_add1 (this, 0);
395 vec_add1 (rv, this);
396 }
397 return rv;
398}
399
Dave Baracha83bc302017-02-25 16:38:12 -0500400static int
401plugin_name_sort_cmp (void *a1, void *a2)
402{
403 plugin_info_t *p1 = a1;
404 plugin_info_t *p2 = a2;
405
406 return strcmp ((char *) p1->name, (char *) p2->name);
407}
408
Dave Barach8dc954a2020-02-05 17:31:09 -0500409static int
410index_cmp (void *a1, void *a2)
411{
412 uword *i1 = (uword *) a1, *i2 = (uword *) a2;
413
414 if (*i1 < *i2)
415 return -1;
416 else if (*i1 > *i2)
417 return 1;
418 else
419 return 0;
420}
421
Dave Barach9b8ffd92016-07-08 08:13:45 -0400422int
423vlib_load_new_plugins (plugin_main_t * pm, int from_early_init)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700424{
425 DIR *dp;
426 struct dirent *entry;
427 struct stat statb;
428 uword *p;
429 plugin_info_t *pi;
430 u8 **plugin_path;
Dave Barach8dc954a2020-02-05 17:31:09 -0500431 uword *not_loaded_indices = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700432 int i;
433
434 plugin_path = split_plugin_path (pm);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400435
Ed Warnickecb9cada2015-12-08 15:45:58 -0700436 for (i = 0; i < vec_len (plugin_path); i++)
437 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400438 dp = opendir ((char *) plugin_path[i]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700439
Dave Barach9b8ffd92016-07-08 08:13:45 -0400440 if (dp == 0)
441 continue;
442
443 while ((entry = readdir (dp)))
444 {
445 u8 *plugin_name;
Damjan Marionf935e332017-01-06 14:33:05 +0100446 u8 *filename;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400447
448 if (pm->plugin_name_filter)
449 {
450 int j;
451 for (j = 0; j < vec_len (pm->plugin_name_filter); j++)
452 if (entry->d_name[j] != pm->plugin_name_filter[j])
453 goto next;
454 }
455
Damjan Marionf935e332017-01-06 14:33:05 +0100456 filename = format (0, "%s/%s%c", plugin_path[i], entry->d_name, 0);
Ole Troan3b3688f2016-06-15 14:29:08 +0200457
458 /* Only accept .so */
Damjan Marionf935e332017-01-06 14:33:05 +0100459 char *ext = strrchr ((const char *) filename, '.');
Dave Barach9b8ffd92016-07-08 08:13:45 -0400460 /* unreadable */
461 if (!ext || (strcmp (ext, ".so") != 0) ||
Damjan Marionf935e332017-01-06 14:33:05 +0100462 stat ((char *) filename, &statb) < 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400463 {
464 ignore:
Damjan Marionf935e332017-01-06 14:33:05 +0100465 vec_free (filename);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400466 continue;
467 }
468
469 /* a dir or other things which aren't plugins */
470 if (!S_ISREG (statb.st_mode))
471 goto ignore;
472
Damjan Marionf935e332017-01-06 14:33:05 +0100473 plugin_name = format (0, "%s%c", entry->d_name, 0);
Dave Baracha83bc302017-02-25 16:38:12 -0500474 /* Have we seen this plugin already? */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400475 p = hash_get_mem (pm->plugin_by_name_hash, plugin_name);
476 if (p == 0)
477 {
Dave Baracha83bc302017-02-25 16:38:12 -0500478 /* No, add it to the plugin vector */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400479 vec_add2 (pm->plugin_info, pi, 1);
480 pi->name = plugin_name;
Damjan Marionf935e332017-01-06 14:33:05 +0100481 pi->filename = filename;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400482 pi->file_info = statb;
Dave Barach8dc954a2020-02-05 17:31:09 -0500483 pi->handle = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400484 hash_set_mem (pm->plugin_by_name_hash, plugin_name,
485 pi - pm->plugin_info);
486 }
487 next:
488 ;
489 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700490 closedir (dp);
491 vec_free (plugin_path[i]);
492 }
493 vec_free (plugin_path);
Dave Baracha83bc302017-02-25 16:38:12 -0500494
495
496 /*
497 * Sort the plugins by name. This is important.
498 * API traces contain absolute message numbers.
499 * Loading plugins in directory (vs. alphabetical) order
500 * makes trace replay incredibly fragile.
501 */
502 vec_sort_with_function (pm->plugin_info, plugin_name_sort_cmp);
503
504 /*
505 * Attempt to load the plugins
506 */
507 for (i = 0; i < vec_len (pm->plugin_info); i++)
508 {
509 pi = vec_elt_at_index (pm->plugin_info, i);
510
511 if (load_one_plugin (pm, pi, from_early_init))
512 {
513 /* Make a note of any which fail to load */
Dave Barach8dc954a2020-02-05 17:31:09 -0500514 vec_add1 (not_loaded_indices, i);
515 }
516 }
517
518 /*
519 * Honor override list
520 */
521 for (i = 0; i < vec_len (pm->plugin_info); i++)
522 {
523 uword *p;
524
525 pi = vec_elt_at_index (pm->plugin_info, i);
526
527 p = hash_get_mem (pm->plugin_overrides_by_name_hash, pi->name);
528
529 /* Plugin overridden? */
530 if (p)
531 {
532 PLUGIN_LOG_NOTICE ("Plugin '%s' overridden by '%s'", pi->name,
533 p[0]);
534 vec_add1 (not_loaded_indices, i);
535 }
536 }
537
538 /*
539 * Sort the vector of indices to delete to avoid screwing up
540 * the indices as we delete them.
541 */
542 vec_sort_with_function (not_loaded_indices, index_cmp);
543
544 /*
545 * Remove duplicates, which can happen if a plugin is
546 * disabled from the command line and disabled by
547 * a plugin which is loaded.
548 */
549 for (i = 0; i < vec_len (not_loaded_indices); i++)
550 {
551 if (i < vec_len (not_loaded_indices) - 1)
552 {
553 if (not_loaded_indices[i + 1] == not_loaded_indices[i])
554 {
555 vec_delete (not_loaded_indices, 1, i);
556 i--;
557 }
Dave Baracha83bc302017-02-25 16:38:12 -0500558 }
559 }
560
561 /* Remove plugin info vector elements corresponding to load failures */
Dave Barach8dc954a2020-02-05 17:31:09 -0500562 if (vec_len (not_loaded_indices) > 0)
Dave Baracha83bc302017-02-25 16:38:12 -0500563 {
Dave Barach8dc954a2020-02-05 17:31:09 -0500564 for (i = vec_len (not_loaded_indices) - 1; i >= 0; i--)
565 {
566 pi = vec_elt_at_index (pm->plugin_info, not_loaded_indices[i]);
567 hash_unset_mem (pm->plugin_by_name_hash, pi->name);
568 if (pi->handle)
569 {
570 dlclose (pi->handle);
571 PLUGIN_LOG_NOTICE ("Unloaded plugin: %s", pi->name);
572 }
573 vec_free (pi->name);
574 vec_free (pi->filename);
575 vec_delete (pm->plugin_info, 1, not_loaded_indices[i]);
576 }
577 vec_free (not_loaded_indices);
Dave Baracha83bc302017-02-25 16:38:12 -0500578 }
579
580 /* Recreate the plugin name hash */
Dave Barach8dc954a2020-02-05 17:31:09 -0500581 hash_free (pm->plugin_by_name_hash);
582 pm->plugin_by_name_hash = hash_create_string (0, sizeof (uword));
583
Dave Baracha83bc302017-02-25 16:38:12 -0500584 for (i = 0; i < vec_len (pm->plugin_info); i++)
585 {
586 pi = vec_elt_at_index (pm->plugin_info, i);
Dave Baracha83bc302017-02-25 16:38:12 -0500587 hash_set_mem (pm->plugin_by_name_hash, pi->name, pi - pm->plugin_info);
588 }
589
Ed Warnickecb9cada2015-12-08 15:45:58 -0700590 return 0;
591}
Dave Barach9b8ffd92016-07-08 08:13:45 -0400592
Dave Barach9b8ffd92016-07-08 08:13:45 -0400593int
594vlib_plugin_early_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700595{
596 plugin_main_t *pm = &vlib_plugin_main;
597
Dave Barach8dc954a2020-02-05 17:31:09 -0500598 pm->logger =
599 vlib_log_register_class_rate_limit ("plugin", "load",
600 0x7FFFFFFF /* aka no rate limit */ );
601
Damjan Marion3b46cba2017-01-23 21:13:45 +0100602 if (pm->plugin_path == 0)
Damjan Marion5546e432021-09-30 20:04:14 +0200603 pm->plugin_path = format (0, "%s", vlib_plugin_path);
604
605 if (pm->plugin_path_add)
606 pm->plugin_path = format (pm->plugin_path, ":%s", pm->plugin_path_add);
607
608 pm->plugin_path = format (pm->plugin_path, "%c", 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700609
Dave Barach8dc954a2020-02-05 17:31:09 -0500610 PLUGIN_LOG_DBG ("plugin path %s", pm->plugin_path);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700611
Ed Warnickecb9cada2015-12-08 15:45:58 -0700612 pm->plugin_by_name_hash = hash_create_string (0, sizeof (uword));
Dave Barach8dc954a2020-02-05 17:31:09 -0500613 pm->plugin_overrides_by_name_hash = hash_create_string (0, sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700614 pm->vlib_main = vm;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400615
616 return vlib_load_new_plugins (pm, 1 /* from_early_init */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700617}
Dave Barach9b8ffd92016-07-08 08:13:45 -0400618
Dave Barach0a32b602017-11-28 18:55:09 -0500619u8 *
620vlib_get_vat_plugin_path (void)
621{
622 plugin_main_t *pm = &vlib_plugin_main;
623 return (pm->vat_plugin_path);
624}
625
626u8 *
627vlib_get_vat_plugin_name_filter (void)
628{
629 plugin_main_t *pm = &vlib_plugin_main;
630 return (pm->vat_plugin_name_filter);
631}
632
Shwetha Bhandarif24e5d72016-07-11 23:08:54 +0100633static clib_error_t *
634vlib_plugins_show_cmd_fn (vlib_main_t * vm,
Ed Warnicke853e7202016-08-12 11:42:26 -0700635 unformat_input_t * input, vlib_cli_command_t * cmd)
Shwetha Bhandarif24e5d72016-07-11 23:08:54 +0100636{
637 plugin_main_t *pm = &vlib_plugin_main;
638 u8 *s = 0;
639 u8 *key = 0;
Damjan Marion3b46cba2017-01-23 21:13:45 +0100640 uword value = 0;
Shwetha Bhandarif24e5d72016-07-11 23:08:54 +0100641 int index = 1;
Damjan Marion3b46cba2017-01-23 21:13:45 +0100642 plugin_info_t *pi;
Shwetha Bhandarif24e5d72016-07-11 23:08:54 +0100643
Damjan Marion3b46cba2017-01-23 21:13:45 +0100644 s = format (s, " Plugin path is: %s\n\n", pm->plugin_path);
Damjan Marion1bfb0dd2017-03-22 11:08:39 +0100645 s = format (s, " %-41s%-33s%s\n", "Plugin", "Version", "Description");
Shwetha Bhandarif24e5d72016-07-11 23:08:54 +0100646
Ed Warnicke853e7202016-08-12 11:42:26 -0700647 hash_foreach_mem (key, value, pm->plugin_by_name_hash,
Damjan Marion3b46cba2017-01-23 21:13:45 +0100648 {
649 if (key != 0)
650 {
651 pi = vec_elt_at_index (pm->plugin_info, value);
Damjan Marion1bfb0dd2017-03-22 11:08:39 +0100652 s = format (s, "%3d. %-40s %-32s %s\n", index, key, pi->version,
Dave Barach8dc954a2020-02-05 17:31:09 -0500653 (pi->reg && pi->reg->description) ?
654 pi->reg->description : "");
Damjan Marion3b46cba2017-01-23 21:13:45 +0100655 index++;
656 }
657 });
Shwetha Bhandarif24e5d72016-07-11 23:08:54 +0100658
Ed Warnicke853e7202016-08-12 11:42:26 -0700659 vlib_cli_output (vm, "%v", s);
660 vec_free (s);
Shwetha Bhandarif24e5d72016-07-11 23:08:54 +0100661 return 0;
662}
663
Ed Warnicke853e7202016-08-12 11:42:26 -0700664VLIB_CLI_COMMAND (plugins_show_cmd, static) =
665{
Dave Barachfe6bdfd2017-01-20 19:50:09 -0500666 .path = "show plugins",
667 .short_help = "show loaded plugins",
668 .function = vlib_plugins_show_cmd_fn,
669};
Dave Barachfe6bdfd2017-01-20 19:50:09 -0500670
Damjan Marion3b46cba2017-01-23 21:13:45 +0100671static clib_error_t *
672config_one_plugin (vlib_main_t * vm, char *name, unformat_input_t * input)
673{
674 plugin_main_t *pm = &vlib_plugin_main;
675 plugin_config_t *pc;
676 clib_error_t *error = 0;
677 uword *p;
678 int is_enable = 0;
679 int is_disable = 0;
680 int skip_version_check = 0;
681
682 if (pm->config_index_by_name == 0)
683 pm->config_index_by_name = hash_create_string (0, sizeof (uword));
684
685 p = hash_get_mem (pm->config_index_by_name, name);
686
687 if (p)
688 {
689 error = clib_error_return (0, "plugin '%s' already configured", name);
690 goto done;
691 }
692
693 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
694 {
695 if (unformat (input, "enable"))
696 is_enable = 1;
697 else if (unformat (input, "disable"))
698 is_disable = 1;
699 else if (unformat (input, "skip-version-check"))
700 skip_version_check = 1;
701 else
702 {
703 error = clib_error_return (0, "unknown input '%U'",
704 format_unformat_error, input);
705 goto done;
706 }
707 }
708
709 if (is_enable && is_disable)
710 {
711 error = clib_error_return (0, "please specify either enable or disable"
712 " for plugin '%s'", name);
713 goto done;
714 }
715
716 vec_add2 (pm->configs, pc, 1);
717 hash_set_mem (pm->config_index_by_name, name, pc - pm->configs);
718 pc->is_enabled = is_enable;
719 pc->is_disabled = is_disable;
720 pc->skip_version_check = skip_version_check;
721 pc->name = name;
722
723done:
724 return error;
725}
726
727clib_error_t *
728vlib_plugin_config (vlib_main_t * vm, unformat_input_t * input)
729{
730 plugin_main_t *pm = &vlib_plugin_main;
731 clib_error_t *error = 0;
732 unformat_input_t in;
733
734 unformat_init (&in, 0, 0);
735
736 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
737 {
738 u8 *s, *v;
739 if (unformat (input, "%s %v", &s, &v))
740 {
741 if (strncmp ((const char *) s, "plugins", 8) == 0)
742 {
743 if (vec_len (in.buffer) > 0)
744 vec_add1 (in.buffer, ' ');
745 vec_add (in.buffer, v, vec_len (v));
746 }
747 }
748 else
749 {
750 error = clib_error_return (0, "unknown input '%U'",
751 format_unformat_error, input);
752 goto done;
753 }
754
755 vec_free (v);
756 vec_free (s);
757 }
758done:
759 input = &in;
760 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
761 {
762 unformat_input_t sub_input;
763 u8 *s = 0;
764 if (unformat (input, "path %s", &s))
765 pm->plugin_path = s;
Damjan Marion5546e432021-09-30 20:04:14 +0200766 else if (unformat (input, "add-path %s", &s))
767 pm->plugin_path_add = s;
Dave Barach0a32b602017-11-28 18:55:09 -0500768 else if (unformat (input, "name-filter %s", &s))
769 pm->plugin_name_filter = s;
770 else if (unformat (input, "vat-path %s", &s))
771 pm->vat_plugin_path = s;
772 else if (unformat (input, "vat-name-filter %s", &s))
773 pm->vat_plugin_name_filter = s;
Mohsin Kazmi06bc2602018-03-22 23:45:23 +0100774 else if (unformat (input, "plugin default %U",
775 unformat_vlib_cli_sub_input, &sub_input))
776 {
777 pm->plugins_default_disable =
778 unformat (&sub_input, "disable") ? 1 : 0;
779 unformat_free (&sub_input);
780 }
Damjan Marion3b46cba2017-01-23 21:13:45 +0100781 else if (unformat (input, "plugin %s %U", &s,
782 unformat_vlib_cli_sub_input, &sub_input))
783 {
784 error = config_one_plugin (vm, (char *) s, &sub_input);
785 unformat_free (&sub_input);
786 if (error)
787 goto done2;
788 }
789 else
790 {
791 error = clib_error_return (0, "unknown input '%U'",
792 format_unformat_error, input);
793 {
794 vec_free (s);
795 goto done2;
796 }
797 }
798 }
799
800done2:
801 unformat_free (&in);
802 return error;
803}
804
805/* discard whole 'plugins' section, as it is already consumed prior to
806 plugin load */
807static clib_error_t *
808plugins_config (vlib_main_t * vm, unformat_input_t * input)
809{
810 u8 *junk;
811
812 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
813 {
814 if (unformat (input, "%s", &junk))
815 {
816 vec_free (junk);
817 return 0;
818 }
819 else
820 return clib_error_return (0, "unknown input '%U'",
821 format_unformat_error, input);
822 }
823 return 0;
824}
825
826VLIB_CONFIG_FUNCTION (plugins_config, "plugins");
827
Dave Barach9b8ffd92016-07-08 08:13:45 -0400828/*
829 * fd.io coding-style-patch-verification: ON
830 *
831 * Local Variables:
832 * eval: (c-set-style "gnu")
833 * End:
834 */