summaryrefslogtreecommitdiffstats
path: root/src/tests/shlib/t_loader.c
blob: 98c99682afba46a221a8d0774e07c1b85a63f8cc (plain)
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
/* foo */
#include <stdio.h>
#include <string.h>
#include <assert.h>
#include "krb5/autoconf.h"
#include "krb5.h"
#include "gssapi/gssapi.h"
#define HAVE_DLOPEN 1

#ifdef HAVE_DLFCN_H
# include <dlfcn.h>
#endif
/* Solaris man page recommends link.h too */

/* lazy = 1 means resolve symbols later, 0 means now; any
   other flags we should be testing?  On Windows, maybe?

   Return value is the library handle.  On error, print a message and
   exit.  */
#define do_open(LIB,FLAGS) do_open_1(LIB,FLAGS,__FILE__,__LINE__)
static void *do_open_1(const char *libname, int lazy,
		       const char *file, int line);

/* Look up a function symbol in the library and return a pointer.

   The return value may need casting to the correct type.  On error,
   print a message and exit.  */
static void *get_sym(void *libhandle, const char *sym);
#define GET_FSYM(TYPE, LIB, NAME) ((TYPE) get_sym(LIB, NAME))
#define get_gfun(LIB, NAME) ((OM_uint32 KRB5_CALLCONV(*)()) get_sym(LIB, NAME))

/* Close dynamically-opened library.

   If the OS reports an error in doing so, print a message and
   exit.  */
#define do_close(X) do_close_1(X, __FILE__, __LINE__)
static void do_close_1(void *libhandle, const char *file, int line);

static inline const char *xbasename(const char *path)
{
    const char *p = strrchr(path, '/');
    if (p)
	return p+1;
    else
	return path;
}

#ifdef HAVE_DLOPEN

#ifdef _AIX
# define SHLIB_SUFFIX ".a"
#else
# define SHLIB_SUFFIX ".so"
#endif

static void *do_open_1(const char *libname, int lazy,
		       const char *file, int line)
{
    void *p;
    char *namebuf;

    file = xbasename(file);
    printf("from %s:%d: do_open(%s)\n", file, line, libname);
    namebuf = malloc(strlen(SHLIB_SUFFIX) + strlen(libname) + 4);
    if (namebuf == 0) {
	perror("malloc");
	exit(1);
    }
    strcpy(namebuf, "lib");
    strcat(namebuf, libname);
    strcat(namebuf, SHLIB_SUFFIX);

    p = dlopen(namebuf, lazy ? RTLD_LAZY : RTLD_NOW);
    if (p == 0) {
	fprintf(stderr, "dlopen of %s failed: %s\n", namebuf, dlerror());
	exit(1);
    }
    free(namebuf);
    return p;
}

#define SYM_PREFIX ""
static void *get_sym(void *libhandle, const char *symname)
{
    void *s;

    /* Bah.  Fix this later, if we care.  */
    assert(strlen(SYM_PREFIX) == 0);

    s = dlsym(libhandle, symname);
    if (s == 0) {
	fprintf(stderr, "symbol %s not found\n", symname);
	exit(1);
    }
    return s;
}

#define do_close(X) do_close_1(X, __FILE__, __LINE__)
static void do_close_1(void *libhandle, const char *file, int line)
{
    file = xbasename(file);
    printf("from %s:%d: do_close\n", file, line), fflush(stdout);
    if (dlclose(libhandle) != 0) {
	fprintf(stderr, "dlclose failed: %s\n", dlerror());
	exit(1);
    }
}

#elif defined _WIN32

static void *do_open(const char *libname, int lazy)
{
    /* To be written?  */
    abort();
}

static void *get_sym(void *libhandle, const char *symname)
{
    abort();
}

static void do_close(void *libhandle)
{
    abort();
}

#else

static void *do_open(const char *libname, int lazy)
{
    printf("don't know how to do dynamic loading here, punting\n");
    exit(0);
}

static void *get_sym(void *libhandle, const char *symname)
{
    abort();
}

static void do_close(void *libhandle)
{
    abort();
}

#endif

int main()
{
    void *celib, *k5lib, *gsslib, *celib2;

    celib = do_open("com_err", 0);
    k5lib = do_open("krb5", 0);
    gsslib = do_open("gssapi_krb5", 0);
    celib2 = do_open("com_err", 0);
    do_close(celib);
    do_close(k5lib);
    do_close(celib2);
    do_close(gsslib);

    celib = do_open("com_err", 0);
    k5lib = do_open("krb5", 0);
    gsslib = do_open("gssapi_krb5", 0);
    celib2 = do_open("com_err", 0);
    do_close(celib2);
    {
	typedef krb5_error_code KRB5_CALLCONV (*ict)(krb5_context *);
	typedef void KRB5_CALLCONV (*fct)(krb5_context);

	ict init_context = (ict) get_sym(k5lib, "krb5_init_context");
	fct free_context = (fct) get_sym(k5lib, "krb5_free_context");
	krb5_context ctx;
	krb5_error_code err;

	err = init_context(&ctx);
	if (err) {
	    fprintf(stderr, "error 0x%lx initializing context\n",
		    (unsigned long) err);
	    exit(1);
	}
	free_context(ctx);
    }
    celib2 = do_open("com_err", 0);
    do_close(celib);
    do_close(k5lib);
    do_close(celib2);
    do_close(gsslib);

    celib = do_open("com_err", 1);
    gsslib = do_open("gssapi_krb5", 1);
    {
	OM_uint32 KRB5_CALLCONV (*init_sec_context)(OM_uint32 *, gss_cred_id_t,
						    gss_ctx_id_t *, gss_name_t,
						    gss_OID,
						    OM_uint32, OM_uint32,
						    gss_channel_bindings_t,
						    gss_buffer_t, gss_OID *,
						    gss_buffer_t,
						    OM_uint32 *, OM_uint32 *)
	    = get_gfun(gsslib, "gss_init_sec_context");
	OM_uint32 KRB5_CALLCONV (*import_name)(OM_uint32 *, gss_buffer_t,
					       gss_OID, gss_name_t *)
	    = get_gfun(gsslib, "gss_import_name");
	OM_uint32 KRB5_CALLCONV (*release_buffer)(OM_uint32 *, gss_buffer_t)
	    = get_gfun(gsslib, "gss_release_buffer");
	OM_uint32 KRB5_CALLCONV (*release_name)(OM_uint32 *, gss_name_t *)
	    = get_gfun(gsslib, "gss_release_name");
	OM_uint32 KRB5_CALLCONV (*delete_sec_context)(OM_uint32 *,
						      gss_ctx_id_t *,
						      gss_buffer_t)
	    = get_gfun(gsslib, "gss_delete_sec_context");

	OM_uint32 gmaj, gmin;
	OM_uint32 retflags;
	gss_ctx_id_t gctx = GSS_C_NO_CONTEXT;
	gss_buffer_desc token;
	gss_name_t target;
	static gss_buffer_desc target_name_buf = {
	    9, "x@mit.edu"
	};
	static gss_OID_desc service_name = {
	    10, "\x2a\x86\x48\x86\xf7\x12\x01\x02\x01\x04"
	};

	gmaj = import_name(&gmin, &target_name_buf, &service_name, &target);
	if (gmaj != GSS_S_COMPLETE) {
	    fprintf(stderr,
		    "import_name reports error major 0x%lx minor 0x%lx(%ld)\n",
		    (unsigned long) gmaj, (unsigned long) gmin,
		    (signed long) gmin);
	    exit(1);
	}
	/* This will probably get different errors, depending on
	   whether we have tickets at the time.  Doesn't matter much,
	   we're ignoring the error and testing whether we're doing
	   cleanup properly.  (Though the internal cleanup needed in
	   the two cases might be different.)  */
	gmaj = init_sec_context(&gmin, GSS_C_NO_CREDENTIAL, &gctx, target,
				GSS_C_NULL_OID, 0, 0, NULL, GSS_C_NO_BUFFER,
				NULL, &token, &retflags, NULL);
	/* Ignore success/failure indication.  */
	if (token.length)
	    release_buffer(&gmin, &token);
	release_name(&gmin, &target);
	if (gctx != GSS_C_NO_CONTEXT)
	    delete_sec_context(&gmin, gctx, GSS_C_NO_BUFFER);
    }
    do_close(celib);
    do_close(gsslib);

    return 0;
}