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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
|
#include <stdio.h>
#include <string.h>
#include <stddef.h>
#include <dlfcn.h>
#include <sys/stat.h>
#include "debug.h"
#include "prio.h"
#include "config.h"
static LIST_HEAD(prioritizers);
int init_prio (void)
{
if (!add_prio(DEFAULT_PRIO))
return 1;
return 0;
}
static struct prio * alloc_prio (void)
{
struct prio *p;
p = MALLOC(sizeof(struct prio));
if (p) {
INIT_LIST_HEAD(&p->node);
p->refcount = 1;
}
return p;
}
void free_prio (struct prio * p)
{
if (!p)
return;
p->refcount--;
if (p->refcount) {
condlog(3, "%s prioritizer refcount %d",
p->name, p->refcount);
return;
}
condlog(3, "unloading %s prioritizer", p->name);
list_del(&p->node);
if (p->handle) {
if (dlclose(p->handle) != 0) {
condlog(0, "Cannot unload prioritizer %s: %s",
p->name, dlerror());
}
}
FREE(p);
}
void cleanup_prio(void)
{
struct prio * prio_loop;
struct prio * prio_temp;
list_for_each_entry_safe(prio_loop, prio_temp, &prioritizers, node) {
free_prio(prio_loop);
}
}
struct prio * prio_lookup (char * name)
{
struct prio * p;
if (!name || !strlen(name))
return NULL;
list_for_each_entry(p, &prioritizers, node) {
if (!strncmp(name, p->name, PRIO_NAME_LEN))
return p;
}
return add_prio(name);
}
int prio_set_args (struct prio * p, char * args)
{
return snprintf(p->args, PRIO_ARGS_LEN, "%s", args);
}
struct prio * add_prio (char * name)
{
char libname[LIB_PRIO_NAMELEN];
struct stat stbuf;
struct prio * p;
char *errstr;
p = alloc_prio();
if (!p)
return NULL;
snprintf(p->name, PRIO_NAME_LEN, "%s", name);
snprintf(libname, LIB_PRIO_NAMELEN, "%s/libprio%s.so",
conf->multipath_dir, name);
if (stat(libname,&stbuf) < 0) {
condlog(0,"Prioritizer '%s' not found in %s",
name, conf->multipath_dir);
goto out;
}
condlog(3, "loading %s prioritizer", libname);
p->handle = dlopen(libname, RTLD_NOW);
if (!p->handle) {
if ((errstr = dlerror()) != NULL)
condlog(0, "A dynamic linking error occurred: (%s)",
errstr);
goto out;
}
p->getprio = (int (*)(struct path *, char *)) dlsym(p->handle, "getprio");
errstr = dlerror();
if (errstr != NULL)
condlog(0, "A dynamic linking error occurred: (%s)", errstr);
if (!p->getprio)
goto out;
list_add(&p->node, &prioritizers);
return p;
out:
free_prio(p);
return NULL;
}
int prio_getprio (struct prio * p, struct path * pp)
{
return p->getprio(pp, p->args);
}
int prio_selected (struct prio * p)
{
if (!p || !p->getprio)
return 0;
return (p->getprio) ? 1 : 0;
}
char * prio_name (struct prio * p)
{
return p->name;
}
char * prio_args (struct prio * p)
{
return p->args;
}
void prio_get (struct prio * dst, char * name, char * args)
{
struct prio * src = prio_lookup(name);
if (!src) {
dst->getprio = NULL;
return;
}
strncpy(dst->name, src->name, PRIO_NAME_LEN);
if (args)
strncpy(dst->args, args, PRIO_ARGS_LEN);
dst->getprio = src->getprio;
dst->handle = NULL;
src->refcount++;
}
void prio_put (struct prio * dst)
{
struct prio * src;
if (!dst)
return;
src = prio_lookup(dst->name);
memset(dst, 0x0, sizeof(struct prio));
free_prio(src);
}
|