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
| static int load_plugins(struct srpd_plugin_s **plugins, int *plugin_count) { ...
while ((ent = readdir(dir))) { if (!strcmp(ent->d_name, ".") || !strcmp(ent->d_name, "..")) { continue; }
if (asprintf(&path, "%s/%s", plugins_dir, ent->d_name) == -1) { error_print(0, "asprintf() failed (%s).", strerror(errno)); rc = -1; break; } handle = dlopen(path, RTLD_LAZY); if (!handle) { error_print(0, "Opening plugin \"%s\" failed (%s).", path, dlerror()); free(path); rc = -1; break; } free(path);
mem = realloc(*plugins, (*plugin_count + 1) * sizeof **plugins); if (!mem) { error_print(0, "realloc() failed (%s).", strerror(errno)); dlclose(handle); rc = -1; break; } *plugins = mem;
*(void **)&(*plugins)[*plugin_count].init_cb = dlsym(handle, SRP_INIT_CB); if (!(*plugins)[*plugin_count].init_cb) { error_print(0, "Failed to find function \"%s\" in plugin \"%s\".", SRP_INIT_CB, ent->d_name); dlclose(handle); rc = -1; break; }
*(void **)&(*plugins)[*plugin_count].cleanup_cb = dlsym(handle, SRP_CLEANUP_CB); if (!(*plugins)[*plugin_count].cleanup_cb) { error_print(0, "Failed to find function \"%s\" in plugin \"%s\".", SRP_CLEANUP_CB, ent->d_name); dlclose(handle); rc = -1; break; }
(*plugins)[*plugin_count].handle = handle; (*plugins)[*plugin_count].private_data = NULL;
name_len = length_without_extension(ent->d_name); if (name_len == 0) { error_print(0, "Wrong filename \"%s\".", ent->d_name); dlclose(handle); rc = -1; break; }
(*plugins)[*plugin_count].plugin_name = strndup(ent->d_name, name_len); if (!((*plugins)[*plugin_count].plugin_name)) { error_print(0, "strndup() failed."); dlclose(handle); rc = -1; break; }
++(*plugin_count); }
closedir(dir); return rc; }
int main(int argc, char **argv) {
... for (i = 0; i < plugin_count; ++i) { r = plugins[i].init_cb(sess, &plugins[i].private_data); if (r != SR_ERR_OK) { SRP_LOG_ERR("Plugin initialization failed (%s).", sr_strerror(r)); goto cleanup; } }
pthread_mutex_lock(&lock); while (!loop_finish) { pthread_cond_wait(&cond, &lock); } pthread_mutex_unlock(&lock);
for (i = 0; i < plugin_count; ++i) { plugins[i].cleanup_cb(sess, plugins[i].private_data); } ... }
|