os/persistentdata/persistentstorage/sqlite3api/TEST/TCL/tcldistribution/unix/tclLoadOSF.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* 
sl@0
     2
 * tclLoadOSF.c --
sl@0
     3
 *
sl@0
     4
 *	This procedure provides a version of the TclLoadFile that works
sl@0
     5
 *	under OSF/1 1.0/1.1/1.2 and related systems, utilizing the old OSF/1
sl@0
     6
 *	/sbin/loader and /usr/include/loader.h.  OSF/1 versions from 1.3 and
sl@0
     7
 *	on use ELF, rtld, and dlopen()[/usr/include/ldfcn.h].
sl@0
     8
 *
sl@0
     9
 *	This is useful for:
sl@0
    10
 *		OSF/1 1.0, 1.1, 1.2 (from OSF)
sl@0
    11
 *			includes: MK4 and AD1 (from OSF RI)
sl@0
    12
 *		OSF/1 1.3 (from OSF) using ROSE
sl@0
    13
 *		HP OSF/1 1.0 ("Acorn") using COFF
sl@0
    14
 *
sl@0
    15
 *	This is likely to be useful for:
sl@0
    16
 *		Paragon OSF/1 (from Intel) 
sl@0
    17
 *		HI-OSF/1 (from Hitachi) 
sl@0
    18
 *
sl@0
    19
 *	This is NOT to be used on:
sl@0
    20
 *		Digitial Alpha OSF/1 systems
sl@0
    21
 *		OSF/1 1.3 or later (from OSF) using ELF
sl@0
    22
 *			includes: MK6, MK7, AD2, AD3 (from OSF RI)
sl@0
    23
 *
sl@0
    24
 *	This approach to things was utter @&^#; thankfully,
sl@0
    25
 * 	OSF/1 eventually supported dlopen().
sl@0
    26
 *
sl@0
    27
 *	John Robert LoVerso <loverso@freebsd.osf.org>
sl@0
    28
 *
sl@0
    29
 * Copyright (c) 1995-1997 Sun Microsystems, Inc.
sl@0
    30
 *
sl@0
    31
 * See the file "license.terms" for information on usage and redistribution
sl@0
    32
 * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
sl@0
    33
 *
sl@0
    34
 * RCS: @(#) $Id: tclLoadOSF.c,v 1.11 2002/10/10 12:25:53 vincentdarley Exp $
sl@0
    35
 */
sl@0
    36
sl@0
    37
#include "tclInt.h"
sl@0
    38
#include <sys/types.h>
sl@0
    39
#include <loader.h>
sl@0
    40

sl@0
    41
/*
sl@0
    42
 *----------------------------------------------------------------------
sl@0
    43
 *
sl@0
    44
 * TclpDlopen --
sl@0
    45
 *
sl@0
    46
 *	Dynamically loads a binary code file into memory and returns
sl@0
    47
 *	a handle to the new code.
sl@0
    48
 *
sl@0
    49
 * Results:
sl@0
    50
 *	A standard Tcl completion code.  If an error occurs, an error
sl@0
    51
 *	message is left in the interp's result.
sl@0
    52
 *
sl@0
    53
 * Side effects:
sl@0
    54
 *	New code suddenly appears in memory.
sl@0
    55
 *
sl@0
    56
 *----------------------------------------------------------------------
sl@0
    57
 */
sl@0
    58
sl@0
    59
int
sl@0
    60
TclpDlopen(interp, pathPtr, loadHandle, unloadProcPtr)
sl@0
    61
    Tcl_Interp *interp;		/* Used for error reporting. */
sl@0
    62
    Tcl_Obj *pathPtr;		/* Name of the file containing the desired
sl@0
    63
				 * code (UTF-8). */
sl@0
    64
    Tcl_LoadHandle *loadHandle;	/* Filled with token for dynamically loaded
sl@0
    65
				 * file which will be passed back to 
sl@0
    66
				 * (*unloadProcPtr)() to unload the file. */
sl@0
    67
    Tcl_FSUnloadFileProc **unloadProcPtr;	
sl@0
    68
				/* Filled with address of Tcl_FSUnloadFileProc
sl@0
    69
				 * function which should be used for
sl@0
    70
				 * this file. */
sl@0
    71
{
sl@0
    72
    ldr_module_t lm;
sl@0
    73
    char *pkg;
sl@0
    74
    char *fileName = Tcl_GetString(pathPtr);
sl@0
    75
    CONST char *native;
sl@0
    76
sl@0
    77
    /* 
sl@0
    78
     * First try the full path the user gave us.  This is particularly
sl@0
    79
     * important if the cwd is inside a vfs, and we are trying to load
sl@0
    80
     * using a relative path.
sl@0
    81
     */
sl@0
    82
    native = Tcl_FSGetNativePath(pathPtr);
sl@0
    83
    lm = (Tcl_PackageInitProc *) load(native, LDR_NOFLAGS);
sl@0
    84
sl@0
    85
    if (lm == LDR_NULL_MODULE) {
sl@0
    86
	/* 
sl@0
    87
	 * Let the OS loader examine the binary search path for
sl@0
    88
	 * whatever string the user gave us which hopefully refers
sl@0
    89
	 * to a file on the binary path
sl@0
    90
	 */
sl@0
    91
	Tcl_DString ds;
sl@0
    92
	native = Tcl_UtfToExternalDString(NULL, fileName, -1, &ds);
sl@0
    93
	lm = (Tcl_PackageInitProc *) load(native, LDR_NOFLAGS);
sl@0
    94
	Tcl_DStringFree(&ds);
sl@0
    95
    }
sl@0
    96
    
sl@0
    97
    if (lm == LDR_NULL_MODULE) {
sl@0
    98
	Tcl_AppendResult(interp, "couldn't load file \"", fileName,
sl@0
    99
	    "\": ", Tcl_PosixError (interp), (char *) NULL);
sl@0
   100
	return TCL_ERROR;
sl@0
   101
    }
sl@0
   102
sl@0
   103
    *clientDataPtr = NULL;
sl@0
   104
    
sl@0
   105
    /*
sl@0
   106
     * My convention is to use a [OSF loader] package name the same as shlib,
sl@0
   107
     * since the idiots never implemented ldr_lookup() and it is otherwise
sl@0
   108
     * impossible to get a package name given a module.
sl@0
   109
     *
sl@0
   110
     * I build loadable modules with a makefile rule like 
sl@0
   111
     *		ld ... -export $@: -o $@ $(OBJS)
sl@0
   112
     */
sl@0
   113
    if ((pkg = strrchr(fileName, '/')) == NULL) {
sl@0
   114
        pkg = fileName;
sl@0
   115
    } else {
sl@0
   116
	pkg++;
sl@0
   117
    }
sl@0
   118
    *loadHandle = pkg;
sl@0
   119
    *unloadProcPtr = &TclpUnloadFile;
sl@0
   120
    return TCL_OK;
sl@0
   121
}
sl@0
   122

sl@0
   123
/*
sl@0
   124
 *----------------------------------------------------------------------
sl@0
   125
 *
sl@0
   126
 * TclpFindSymbol --
sl@0
   127
 *
sl@0
   128
 *	Looks up a symbol, by name, through a handle associated with
sl@0
   129
 *	a previously loaded piece of code (shared library).
sl@0
   130
 *
sl@0
   131
 * Results:
sl@0
   132
 *	Returns a pointer to the function associated with 'symbol' if
sl@0
   133
 *	it is found.  Otherwise returns NULL and may leave an error
sl@0
   134
 *	message in the interp's result.
sl@0
   135
 *
sl@0
   136
 *----------------------------------------------------------------------
sl@0
   137
 */
sl@0
   138
Tcl_PackageInitProc*
sl@0
   139
TclpFindSymbol(interp, loadHandle, symbol) 
sl@0
   140
    Tcl_Interp *interp;
sl@0
   141
    Tcl_LoadHandle loadHandle;
sl@0
   142
    CONST char *symbol;
sl@0
   143
{
sl@0
   144
    return ldr_lookup_package((char *)loadHandle, symbol);
sl@0
   145
}
sl@0
   146

sl@0
   147
/*
sl@0
   148
 *----------------------------------------------------------------------
sl@0
   149
 *
sl@0
   150
 * TclpUnloadFile --
sl@0
   151
 *
sl@0
   152
 *	Unloads a dynamically loaded binary code file from memory.
sl@0
   153
 *	Code pointers in the formerly loaded file are no longer valid
sl@0
   154
 *	after calling this function.
sl@0
   155
 *
sl@0
   156
 * Results:
sl@0
   157
 *	None.
sl@0
   158
 *
sl@0
   159
 * Side effects:
sl@0
   160
 *	Does nothing.  Can anything be done?
sl@0
   161
 *
sl@0
   162
 *----------------------------------------------------------------------
sl@0
   163
 */
sl@0
   164
sl@0
   165
void
sl@0
   166
TclpUnloadFile(loadHandle)
sl@0
   167
    Tcl_LoadHandle loadHandle;	/* loadHandle returned by a previous call
sl@0
   168
				 * to TclpDlopen().  The loadHandle is 
sl@0
   169
				 * a token that represents the loaded 
sl@0
   170
				 * file. */
sl@0
   171
{
sl@0
   172
}
sl@0
   173

sl@0
   174
/*
sl@0
   175
 *----------------------------------------------------------------------
sl@0
   176
 *
sl@0
   177
 * TclGuessPackageName --
sl@0
   178
 *
sl@0
   179
 *	If the "load" command is invoked without providing a package
sl@0
   180
 *	name, this procedure is invoked to try to figure it out.
sl@0
   181
 *
sl@0
   182
 * Results:
sl@0
   183
 *	Always returns 0 to indicate that we couldn't figure out a
sl@0
   184
 *	package name;  generic code will then try to guess the package
sl@0
   185
 *	from the file name.  A return value of 1 would have meant that
sl@0
   186
 *	we figured out the package name and put it in bufPtr.
sl@0
   187
 *
sl@0
   188
 * Side effects:
sl@0
   189
 *	None.
sl@0
   190
 *
sl@0
   191
 *----------------------------------------------------------------------
sl@0
   192
 */
sl@0
   193
sl@0
   194
int
sl@0
   195
TclGuessPackageName(fileName, bufPtr)
sl@0
   196
    CONST char *fileName;	/* Name of file containing package (already
sl@0
   197
				 * translated to local form if needed). */
sl@0
   198
    Tcl_DString *bufPtr;	/* Initialized empty dstring.  Append
sl@0
   199
				 * package name to this if possible. */
sl@0
   200
{
sl@0
   201
    return 0;
sl@0
   202
}