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 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809
|
/*
* dlf.c
*
* $Id: dlf.c,v 1.6 1999/04/24 09:54:10 source Exp $
*
* Dynamic Library Loader (mapping to SVR4)
*
* The iODBC driver manager.
*
* Copyright (C) 1995 by Ke Jin <kejin@empress.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <dlf.h>
#include <errno.h>
#ifdef DLDAPI_DEFINED
#undef DLDAPI_DEFINED
#endif
#ifdef DLDAPI_SVR4_DLFCN
#define DLDAPI_DEFINED
static char sccsid[] = "@(#)dynamic load interface -- SVR4 dlfcn";
#endif
/*********************************
*
* HP/UX
*
*********************************/
#ifdef DLDAPI_HP_SHL
#define DLDAPI_DEFINED
#include <dl.h>
static char sccsid[] = "@(#)dynamic load interface -- HP/UX dl(shl)";
void *
dlopen (char *path, int mode)
{
return (void *) shl_load ((char *) (path), BIND_DEFERRED, 0L);
}
void *
dlsym (void *hdll, char *sym)
{
void *symaddr = 0;
int ret;
if (!hdll)
hdll = (void *) PROG_HANDLE;
/* Remember, a driver may export calls as function pointers
* (i.e. with type TYPE_DATA) rather than as functions
* (i.e. with type TYPE_PROCEDURE). Thus, to be safe, we
* uses TYPE_UNDEFINED to cover all of them.
*/
ret = shl_findsym ((shl_t *) & hdll, sym, TYPE_UNDEFINED, &symaddr);
if (ret == -1)
return 0;
return symaddr;
}
char *
dlerror ()
{
extern char *strerror ();
return strerror (errno);
}
int
dlclose (void *hdll)
{
return shl_unload ((shl_t) hdll);
}
#endif /* end of HP/UX Seection */
/*********************************
*
* IBM AIX
*
*********************************/
#ifdef DLDAPI_AIX_LOAD
#define DLDAPI_DEFINED
#include <sys/types.h>
#include <sys/ldr.h>
#include <sys/stat.h>
#include <nlist.h>
#ifndef HTAB_SIZE
#define HTAB_SIZE 256
#endif
#define FACTOR 0.618039887 /* i.e. (sqrt(5) - 1)/2 */
#ifndef ENTRY_SYM
#define ENTRY_SYM ".__start" /* default entry point for aix */
#endif
typedef struct slot_s
{
char *sym;
long fdesc[3]; /* 12 bytes function descriptor */
struct slot_s *next;
}
slot_t;
/* Note: on AIX, a function pointer actually points to a
* function descriptor, a 12 bytes data. The first 4 bytes
* is the virtual address of the function. The next 4 bytes
* is the virtual address of TOC (Table of Contents) of the
* object module the function belong to. The last 4 bytes
* are always 0 for C and Fortran functions. Every object
* module has an entry point (which can be specified at link
* time by -e ld option). iODBC driver manager requires ODBC
* driver shared library always use the default entry point
* (so you shouldn't use -e ld option when creating a driver
* share library). load() returns the function descriptor of
* a module's entry point. From which we can calculate function
* descriptors of other functions in the same module by using
* the fact that the load() doesn't change the relative
* offset of functions to their module entry point(i.e the
* offset in memory loaded by load() will be as same as in
* the module library file).
*/
typedef slot_t *hent_t;
typedef struct nlist nlist_t;
typedef struct stat stat_t;
typedef struct obj
{
int dev; /* device id */
int ino; /* inode number */
char *path; /* file name */
int (*pentry) (); /* entry point of this share library */
int refn; /* number of reference */
hent_t htab[HTAB_SIZE];
struct obj * next;
}
obj_t;
static char *errmsg = 0;
static void
init_htab (hent_t * ht)
/* initate a hashing table */
{
int i;
for (i = 0; i < HTAB_SIZE; i++)
ht[i] = (slot_t *) 0;
return;
}
static void
clean_htab (hent_t * ht)
/* free all slots */
{
int i;
slot_t *ent;
slot_t *tent;
for (i = 0; i < HTAB_SIZE; i++)
{
for (ent = ht[i]; ent;)
{
tent = ent->next;
free (ent->sym);
free (ent);
ent = tent;
}
ht[i] = 0;
}
return;
}
static int
hash (char *sym)
{
int a, key;
double f;
if (!sym || !*sym)
return 0;
for (key = *sym; *sym; sym++)
{
key += *sym;
a = key;
key = (int) ((a << 8) + (key >> 8));
key = (key > 0) ? key : -key;
}
f = key * FACTOR;
a = (int) f;
return (int) ((HTAB_SIZE - 1) * (f - a));
}
static hent_t
search (hent_t * htab, char *sym)
/* search hashing table to find a matched slot */
{
int key;
slot_t *ent;
key = hash (sym);
for (ent = htab[key]; ent; ent = ent->next)
{
if (!strcmp (ent->sym, sym))
return ent;
}
return 0; /* no match */
}
static void
insert (hent_t * htab, slot_t * ent)
/* insert a new slot to hashing table */
{
int key;
key = hash (ent->sym);
ent->next = htab[key];
htab[key] = ent;
return;
}
static slot_t *
slot_alloc (char *sym)
/* allocate a new slot with symbol */
{
slot_t *ent;
ent = (slot_t *) malloc (sizeof (slot_t));
ent->sym = (char *) malloc (strlen (sym) + 1);
if (!ent->sym)
{
free (ent);
return 0;
}
strcpy (ent->sym, sym);
return ent;
}
static obj_t *obj_list = 0;
void *
dlopen (char *file, int mode)
{
stat_t st;
obj_t *pobj;
char buf[1024];
if (!file || !*file)
{
errno = EINVAL;
return 0;
}
errno = 0;
errmsg = 0;
if (stat (file, &st))
return 0;
for (pobj = obj_list; pobj; pobj = pobj->next)
/* find a match object */
{
if (pobj->ino == st.st_ino
&& pobj->dev == st.st_dev)
{
/* found a match. increase its
* reference count and return
* its address */
pobj->refn++;
return pobj;
}
}
pobj = (obj_t *) malloc (sizeof (obj_t));
if (!pobj)
return 0;
pobj->path = (char *) malloc (strlen (file) + 1);
if (!pobj->path)
{
free (pobj);
return 0;
}
strcpy (pobj->path, file);
pobj->dev = st.st_dev;
pobj->ino = st.st_ino;
pobj->refn = 1;
pobj->pentry = (int (*)()) load (file, 0, 0);
if (!pobj->pentry)
{
free (pobj->path);
free (pobj);
return 0;
}
init_htab (pobj->htab);
pobj->next = obj_list;
obj_list = pobj;
return pobj;
}
int
dlclose (void *hobj)
{
obj_t *pobj = (obj_t *) hobj;
obj_t *tpobj;
int match = 0;
if (!hobj)
{
errno = EINVAL;
return -1;
}
errno = 0;
errmsg = 0;
if (pobj == obj_list)
{
pobj->refn--;
if (pobj->refn)
return 0;
match = 1;
obj_list = pobj->next;
}
for (tpobj = obj_list; !match && tpobj; tpobj = tpobj->next)
{
if (tpobj->next == pobj)
{
pobj->refn--;
if (pobj->refn)
return 0;
match = 1;
tpobj->next = pobj->next;
}
}
if (match)
{
unload ((void *) (pobj->pentry));
clean_htab (pobj->htab);
free (pobj->path);
free (pobj);
}
return 0;
}
char *
dlerror ()
{
extern char *sys_errlist[];
if (!errmsg || !errmsg[0])
{
if (errno >= 0)
return sys_errlist[errno];
return "";
}
return errmsg;
}
void *
dlsym (void *hdl, char *sym)
{
nlist_t nl[3];
obj_t *pobj = (obj_t *) hdl;
slot_t *ent;
int (*fp) ();
long lbuf[3];
if (!hdl || !(pobj->htab) || !sym || !*sym)
{
errno = EINVAL;
return 0;
}
errno = 0;
errmsg = 0;
ent = search (pobj->htab, sym);
if (ent)
return ent->fdesc;
#define n_name _n._n_name
nl[0].n_name = ENTRY_SYM;
nl[1].n_name = sym;
nl[2].n_name = 0;
/* There is a potential problem here. If application
* did not pass a full path name, and changed the
* working directory after the load(), then nlist()
* will be unable to open the original shared library
* file to resolve the symbols. there are 3 ways to working
* round this: 1. convert to full pathname in driver
* manager. 2. applications always pass driver's full
* path name. 3. if driver itself don't support
* SQLGetFunctions(), call it with SQL_ALL_FUNCTIONS
* as flag immidately after SQLConnect(), SQLDriverConnect()
* and SQLBrowseConnect() to force the driver manager
* resolving all will be used symbols.
*/
if (nlist (pobj->path, nl) == -1)
return 0;
if (!nl[0].n_type && !nl[0].n_value)
{
errmsg = "can't locate module entry symbol";
return 0;
}
/* Note: On AIX 3.x if the object library is not
* built with -g compiling option, .n_type field
* is always 0. While on 4.x it will be 32.
* On AIX 4.x, if the symbol is a entry point,
* n_value will be 0. However, one thing is for sure
* that if a symbol is not existance in the file,
* both .n_type and .n_value would be 0.
*/
if (!nl[1].n_type && !nl[1].n_value)
{
errmsg = "symbol not existance in this module";
return 0;
}
ent = slot_alloc (sym);
if (!ent)
return 0;
/* catch it with a slot in the hashing table */
insert (pobj->htab, ent);
memcpy (ent->fdesc, pobj->pentry, sizeof (ent->fdesc));
/* now ent->fdesc[0] is the virtual address of entry point
* and ent->fdesc[1] is the TOC of the module
*/
/* let's calculate the virtual address of the symbol
* by adding a relative offset getting from the module
* file symbol table, i.e
*
* functin virtual address = entry point virtual address +
* + ( function offset in file - entry point offset in file )
*/
(ent->fdesc)[0] = (ent->fdesc)[0] +
(nl[1].n_value - nl[0].n_value);
/* return the function descriptor */
return ent->fdesc;
}
#endif /* end of IBM AIX Section */
/*********************************
*
* Windows 3.x, 95, NT
*
*********************************/
#ifdef DLDAPI_WINDOWS
#define DLDAPI_DEFINED
#include <windows.h>
void FAR *
dlopen (char FAR * dll, int mode)
{
HINSTANCE hint;
if (dll == NULL)
{
return GetWindowWord (NULL, GWW_HINSTANCE);
}
hint = LoadLibrary (dll);
if (hint < HINSTANCE_ERROR)
{
return NULL;
}
return (void FAR *) hint;
}
void FAR *
dlsym (void FAR * hdll, char FAR * sym)
{
return (void FAR *) GetProcAddress (hdll, sym);
}
char FAR *
dlerror ()
{
return 0L; /* unimplemented yet */
}
int
dlclose (void FAR * hdll)
{
FreeLibrary ((HINSTANCE) hdll);
}
#endif /* end of Windows family */
/***********************************
*
* VMS
*
***********************************/
#ifdef VMS
#define DLDAPI_DEFINED
#ifdef DLDAPI_VMS_IODBC
#include <stdio.h>
#include <descrip.h>
#include <starlet.h>
#include <ssdef.h>
#include <libdef.h>
#include <lib$routines>
#include <rmsdef.h>
#include <fabdef.h>
#include <namdef.h>
#ifndef LIB$M_FIS_MIXCASE
#define LIB$M_FIS_MIXCASE 1<<4
#endif
typedef struct {
struct dsc$descriptor_s filename_d;
struct dsc$descriptor_s image_d;
char filename[NAM$C_MAXRSS]; /* $PARSEd image name */
} dll_t;
/*
* The following static int contains the last VMS error returned. It is kept
* static so that dlerror() can get it. This method is dangerous if you have
* threaded applications, but this is the way the UNIX dlopen() etc
* is defined.
*/
static int saved_status = SS$_NORMAL;
static char dlerror_buf[256];
static int
iodbc_find_image_symbol (
struct dsc$descriptor_s *filename_d,
struct dsc$descriptor_s *symbol_d,
void **rp,
struct dsc$descriptor_s *image_d, int flag)
{
lib$establish (lib$sig_to_ret);
return lib$find_image_symbol (filename_d, symbol_d, rp, image_d, flag);
}
void *
iodbc_dlopen (char *path, int unused_flag)
{
int status;
dll_t *dll;
struct FAB imgfab;
struct NAM imgnam;
static char defimg[] = "SYS$SHARE:.EXE";
if (path == NULL)
{
saved_status = SS$_UNSUPPORTED;
return NULL;
}
dll = malloc (sizeof (dll_t));
if (dll == NULL)
{
saved_status = SS$_INSFMEM;
return NULL;
}
imgfab = cc$rms_fab;
imgfab.fab$l_fna = path;
imgfab.fab$b_fns = strlen (path);
imgfab.fab$w_ifi = 0;
imgfab.fab$l_dna = defimg;
imgfab.fab$b_dns = sizeof (defimg);
imgfab.fab$l_fop = FAB$M_NAM;
imgfab.fab$l_nam = &imgnam;
imgnam = cc$rms_nam;
imgnam.nam$l_esa = dll->filename;
imgnam.nam$b_ess = NAM$C_MAXRSS;
status = sys$parse (&imgfab);
if (!(status & 1))
{
free (dll);
saved_status = status;
return NULL;
}
dll->filename_d.dsc$b_dtype = DSC$K_DTYPE_T;
dll->filename_d.dsc$b_class = DSC$K_CLASS_S;
dll->filename_d.dsc$a_pointer = imgnam.nam$l_name;
dll->filename_d.dsc$w_length = imgnam.nam$b_name;
dll->image_d.dsc$b_dtype = DSC$K_DTYPE_T;
dll->image_d.dsc$b_class = DSC$K_CLASS_S;
dll->image_d.dsc$a_pointer = dll->filename;
dll->image_d.dsc$w_length = imgnam.nam$b_esl;
/*
* VMS does not have the concept of first opening a shared library and then
* asking for symbols; the LIB$FIND_IMAGE_SYMBOL routine does both.
* Since I want my implementation of dlopen() to return an error if the
* shared library can not be loaded, I try to find a dummy symbol in the
* library.
*/
iodbc_dlsym (dll, "THIS_ROUTINE_MIGHT_NOT_EXIST");
if (!((saved_status ^ LIB$_KEYNOTFOU) & ~7))
{
saved_status = SS$_NORMAL;
}
if (saved_status & 1)
{
return dll;
}
else
{
free (dll);
return NULL;
}
}
void *
iodbc_dlsym (void *hdll, char *sym)
{
int status;
dll_t *dll;
struct dsc$descriptor_s symbol_d;
void *rp;
dll = hdll;
if (dll == NULL)
return NULL;
symbol_d.dsc$b_dtype = DSC$K_DTYPE_T;
symbol_d.dsc$b_class = DSC$K_CLASS_S;
symbol_d.dsc$a_pointer = sym;
symbol_d.dsc$w_length = strlen (sym);
status = iodbc_find_image_symbol (&dll->filename_d, &symbol_d, &rp,
&dll->image_d, 0);
if (!((saved_status ^ LIB$_KEYNOTFOU) & ~7))
{
status = iodbc_find_image_symbol (&dll->filename_d, &symbol_d, &rp,
&dll->image_d, LIB$M_FIS_MIXCASE);
}
if (status & 1)
{
return rp;
}
else
{
saved_status = status;
return NULL;
}
}
char *
iodbc_dlerror ()
{
struct dsc$descriptor desc;
short outlen;
int status;
if (saved_status & 1)
{
return NULL;
}
desc.dsc$b_dtype = DSC$K_DTYPE_T;
desc.dsc$b_class = DSC$K_CLASS_S;
desc.dsc$a_pointer = dlerror_buf;
desc.dsc$w_length = sizeof (dlerror_buf);
status = sys$getmsg (saved_status, &outlen, &desc, 15, 0);
if (status & 1)
{
dlerror_buf[outlen] = '\0';
}
else
{
sprintf (dlerror_buf, "Message number %8X", saved_status);
}
saved_status = SS$_NORMAL;
return (dlerror_buf);
}
int
iodbc_dlclose (void *hdll)
{
/*
* Not really implemented since VMS doesn't support unloading images.
* The hdll pointer is released though.
*/
free (hdll);
return 0;
}
#endif /* DLDAPI_VMS_IODBC */
#endif /* VMS */
/***********************************
*
* other platforms
*
***********************************/
#ifdef DLDAPI_OS2
#define DLDAPI_DEFINED
/*
* DosLoadModule(), DosQueryProcAddress(), DosFreeModule(), ...
*/
#endif
#ifdef DLDAPI_MAC
#define DLDAPI_DEFINED
#endif
#ifdef DLDAPI_NEXT
#define DLDAPI_DEFINED
#endif
#ifndef DLDAPI_DEFINED
#error "dynamic load editor undefined"
#endif
|