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 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
|
#ident "$Id: module.c,v 1.3 1999/12/17 19:02:47 hpa Exp $"
/* ----------------------------------------------------------------------- *
*
* module.c - common module-management functions
*
* Copyright 1997 Transmeta Corporation - All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, Inc., 675 Mass Ave, Cambridge MA 02139,
* USA; either version 2 of the License, or (at your option) any later
* version; incorporated herein by reference.
*
* ----------------------------------------------------------------------- */
#include <stdio.h>
#include <syslog.h>
#include <dlfcn.h>
#include <string.h>
#include <stdlib.h>
#include "automount.h"
struct lookup_mod *open_lookup(const char *name, const char *err_prefix,
const char *mapfmt,
int argc, const char * const *argv)
{
struct lookup_mod *mod;
char *fnbuf;
void *dh;
int *ver;
mod = malloc(sizeof(struct lookup_mod));
if ( !mod ) {
if ( err_prefix ) syslog(LOG_CRIT, "%s%m", err_prefix);
return NULL;
}
fnbuf = alloca(strlen(name) + strlen(AUTOFS_LIB_DIR) + 13);
if ( !fnbuf ) {
free(mod);
if ( err_prefix ) syslog(LOG_CRIT, "%s%m", err_prefix);
return NULL;
}
sprintf(fnbuf, "%s//lookup_%s.so", AUTOFS_LIB_DIR, name);
if ( !(dh = dlopen(fnbuf, RTLD_NOW)) ) {
if ( err_prefix )
syslog(LOG_CRIT, "%scannot open lookup module %s (%s)",
err_prefix, name, dlerror());
free(mod);
return NULL;
}
if ( !(ver = (int *) dlsym(dh, "lookup_version"))
|| *ver != AUTOFS_LOOKUP_VERSION ) {
if ( err_prefix )
syslog(LOG_CRIT, "%slookup module %s version mismatch", err_prefix, name);
dlclose(dh);
free(mod);
return NULL;
}
if ( !(mod->lookup_init = (lookup_init_t) dlsym(dh, "lookup_init")) ||
!(mod->lookup_mount = (lookup_mount_t) dlsym(dh, "lookup_mount")) ||
!(mod->lookup_done = (lookup_done_t) dlsym(dh, "lookup_done")) ) {
if ( err_prefix )
syslog(LOG_CRIT, "%slookup module %s corrupt", err_prefix, name);
dlclose(dh);
free(mod);
return NULL;
}
if ( mod->lookup_init(mapfmt, argc, argv, &mod->context) ) {
dlclose(dh);
free(mod);
return NULL;
}
mod->dlhandle = dh;
return mod;
}
int close_lookup(struct lookup_mod *mod)
{
int rv = mod->lookup_done(mod->context);
dlclose(mod->dlhandle);
free(mod);
return rv;
}
struct parse_mod *open_parse(const char *name, const char *err_prefix,
int argc, const char * const *argv)
{
struct parse_mod *mod;
char *fnbuf;
void *dh;
int *ver;
mod = malloc(sizeof(struct parse_mod));
if ( !mod ) {
if ( err_prefix ) syslog(LOG_CRIT, "%s%m", err_prefix);
return NULL;
}
fnbuf = alloca(strlen(name) + strlen(AUTOFS_LIB_DIR) + 12);
if ( !fnbuf ) {
free(mod);
if ( err_prefix ) syslog(LOG_CRIT, "%s%m", err_prefix);
return NULL;
}
sprintf(fnbuf, "%s//parse_%s.so", AUTOFS_LIB_DIR, name);
if ( !(dh = dlopen(fnbuf, RTLD_NOW)) ) {
if ( err_prefix )
syslog(LOG_CRIT, "%scannot open parse module %s (%s)",
err_prefix, name, dlerror());
free(mod);
return NULL;
}
if ( !(ver = (int *) dlsym(dh, "parse_version"))
|| *ver != AUTOFS_PARSE_VERSION ) {
if ( err_prefix )
syslog(LOG_CRIT, "%sparse module %s version mismatch", err_prefix, name);
dlclose(dh);
free(mod);
return NULL;
}
if ( !(mod->parse_init = (parse_init_t) dlsym(dh, "parse_init")) ||
!(mod->parse_mount = (parse_mount_t) dlsym(dh, "parse_mount")) ||
!(mod->parse_done = (parse_done_t) dlsym(dh, "parse_done")) ) {
if ( err_prefix )
syslog(LOG_CRIT, "%sparse module %s corrupt", err_prefix, name);
dlclose(dh);
free(mod);
return NULL;
}
if ( mod->parse_init(argc,argv,&mod->context) ) {
dlclose(dh);
free(mod);
return NULL;
}
mod->dlhandle = dh;
return mod;
}
int close_parse(struct parse_mod *mod)
{
int rv = mod->parse_done(mod->context);
dlclose(mod->dlhandle);
free(mod);
return rv;
}
struct mount_mod *open_mount(const char *name, const char *err_prefix)
{
struct mount_mod *mod;
char *fnbuf;
void *dh;
int *ver;
mod = malloc(sizeof(struct mount_mod));
if ( !mod ) {
if ( err_prefix ) syslog(LOG_CRIT, "%s%m", err_prefix);
return NULL;
}
fnbuf = alloca(strlen(name) + strlen(AUTOFS_LIB_DIR) + 12);
if ( !fnbuf ) {
free(mod);
if ( err_prefix )
syslog(LOG_CRIT, "%s%m", err_prefix);
return NULL;
}
sprintf(fnbuf, "%s//mount_%s.so", AUTOFS_LIB_DIR, name);
if ( !(dh = dlopen(fnbuf, RTLD_NOW)) ) {
if ( err_prefix )
syslog(LOG_CRIT, "%scannot open mount module %s (%s)",
err_prefix, name, dlerror());
free(mod);
return NULL;
}
if ( !(ver = (int *) dlsym(dh, "mount_version"))
|| *ver != AUTOFS_MOUNT_VERSION ) {
if ( err_prefix )
syslog(LOG_CRIT, "%smount module %s version mismatch", err_prefix, name);
dlclose(dh);
free(mod);
return NULL;
}
if ( !(mod->mount_init = (mount_init_t) dlsym(dh, "mount_init")) ||
!(mod->mount_mount = (mount_mount_t) dlsym(dh, "mount_mount")) ||
!(mod->mount_done = (mount_done_t) dlsym(dh, "mount_done")) ) {
if ( err_prefix )
syslog(LOG_CRIT, "%smount module %s corrupt", err_prefix, name);
dlclose(dh);
free(mod);
return NULL;
}
if ( mod->mount_init(&mod->context) ) {
dlclose(dh);
free(mod);
return NULL;
}
mod->dlhandle = dh;
return mod;
}
int close_mount(struct mount_mod *mod)
{
int rv = mod->mount_done(mod->context);
dlclose(mod->dlhandle);
free(mod);
return rv;
}
|