1 /* $NetBSD: citrus_module.c,v 1.9 2009/01/11 02:46:24 christos Exp $ */
4 * Copyright (c)1999, 2000, 2001, 2002 Citrus Project,
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * Copyright (c) 1998 The NetBSD Foundation, Inc.
31 * All rights reserved.
33 * This code is derived from software contributed to The NetBSD Foundation
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions
39 * 1. Redistributions of source code must retain the above copyright
40 * notice, this list of conditions and the following disclaimer.
41 * 2. Redistributions in binary form must reproduce the above copyright
42 * notice, this list of conditions and the following disclaimer in the
43 * documentation and/or other materials provided with the distribution.
45 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
46 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
47 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
48 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
49 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
50 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
51 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
52 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
53 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
54 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
55 * POSSIBILITY OF SUCH DAMAGE.
60 * The Regents of the University of California. All rights reserved.
62 * This code is derived from software contributed to Berkeley by
63 * Paul Borman at Krystal Technologies.
65 * Redistribution and use in source and binary forms, with or without
66 * modification, are permitted provided that the following conditions
68 * 1. Redistributions of source code must retain the above copyright
69 * notice, this list of conditions and the following disclaimer.
70 * 2. Redistributions in binary form must reproduce the above copyright
71 * notice, this list of conditions and the following disclaimer in the
72 * documentation and/or other materials provided with the distribution.
73 * 3. Neither the name of the University nor the names of its contributors
74 * may be used to endorse or promote products derived from this software
75 * without specific prior written permission.
77 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
78 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
79 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
80 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
81 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
82 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
83 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
84 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
85 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
86 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
90 #include <sys/cdefs.h>
91 #if defined(LIBC_SCCS) && !defined(lint)
92 __RCSID("$NetBSD: citrus_module.c,v 1.9 2009/01/11 02:46:24 christos Exp $");
93 #endif /* LIBC_SCCS and not lint */
104 #include "citrus_namespace.h"
105 #include "citrus_bcs.h"
106 #include "citrus_module.h"
108 #include <sys/types.h>
114 static int _getdewey(int [], char *);
115 static int _cmpndewey(int [], int, int [], int);
116 static const char *_findshlib(char *, int *, int *);
118 static const char *_pathI18nModule
= NULL
;
120 /* from libexec/ld.aout_so/shlib.c */
123 #define MAXDEWEY 3 /*ELF*/
126 _getdewey(int dewey
[], char *cp
)
130 _DIAGASSERT(dewey
!= NULL
);
131 _DIAGASSERT(cp
!= NULL
);
133 for (n
= 0, i
= 0; i
< MAXDEWEY
; i
++) {
137 if (*cp
== '.') cp
++;
138 if (*cp
< '0' || '9' < *cp
)
141 dewey
[n
++] = (int)_bcs_strtol(cp
, &cp
, 10);
148 * Compare two dewey arrays.
149 * Return -1 if `d1' represents a smaller value than `d2'.
150 * Return 1 if `d1' represents a greater value than `d2'.
154 _cmpndewey(int d1
[], int n1
, int d2
[], int n2
)
158 _DIAGASSERT(d1
!= NULL
);
159 _DIAGASSERT(d2
!= NULL
);
161 for (i
= 0; i
< n1
&& i
< n2
; i
++) {
177 /* XXX cannot happen */
182 _findshlib(char *name
, int *majorp
, int *minorp
)
190 static char path
[PATH_MAX
];
192 const char *search_dirs
[1];
193 const int n_search_dirs
= 1;
195 _DIAGASSERT(name
!= NULL
);
196 _DIAGASSERT(majorp
!= NULL
);
197 _DIAGASSERT(minorp
!= NULL
);
202 search_dirs
[0] = _pathI18nModule
;
208 for (i
= 0; i
< n_search_dirs
; i
++) {
209 DIR *dd
= opendir(search_dirs
[i
]);
212 int found_dot_so
= 0;
217 while ((dp
= readdir(dd
)) != NULL
) {
220 if (dp
->d_namlen
< len
+ 4)
222 if (strncmp(dp
->d_name
, lname
, (size_t)len
) != 0)
224 if (strncmp(dp
->d_name
+len
, ".so.", 4) != 0)
227 if ((n
= _getdewey(tmp
, dp
->d_name
+len
+4)) == 0)
230 if (major
!= -1 && found_dot_a
)
233 /* XXX should verify the library is a.out/ELF? */
235 if (major
== -1 && minor
== -1) {
236 goto compare_version
;
237 } else if (major
!= -1 && minor
== -1) {
239 goto compare_version
;
240 } else if (major
!= -1 && minor
!= -1) {
241 if (tmp
[0] == major
) {
242 if (n
== 1 || tmp
[1] >= minor
)
243 goto compare_version
;
247 /* else, this file does not qualify */
251 if (_cmpndewey(tmp
, n
, dewey
, ndewey
) <= 0)
254 /* We have a better version */
256 snprintf(path
, sizeof(path
), "%s/%s", search_dirs
[i
],
259 bcopy(tmp
, dewey
, sizeof(dewey
));
266 if (found_dot_a
|| found_dot_so
)
268 * There's a lib in this dir; take it.
270 return path
[0] ? path
: NULL
;
273 return path
[0] ? path
: NULL
;
277 _citrus_find_getops(_citrus_module_t handle
, const char *modname
,
283 _DIAGASSERT(handle
!= NULL
);
284 _DIAGASSERT(modname
!= NULL
);
285 _DIAGASSERT(ifname
!= NULL
);
287 snprintf(name
, sizeof(name
), _C_LABEL_STRING("_citrus_%s_%s_getops"),
289 p
= dlsym((void *)handle
, name
);
294 _citrus_load_module(_citrus_module_t
*rhandle
, const char *encname
)
301 _DIAGASSERT(rhandle
!= NULL
);
303 if (_pathI18nModule
== NULL
) {
304 p
= getenv("PATH_I18NMODULE");
305 if (p
!= NULL
&& !issetugid()) {
306 _pathI18nModule
= strdup(p
);
307 if (_pathI18nModule
== NULL
)
310 _pathI18nModule
= _PATH_I18NMODULE
;
313 (void)snprintf(path
, sizeof(path
), "lib%s", encname
);
314 maj
= I18NMODULE_MAJOR
;
316 p
= _findshlib(path
, &maj
, &min
);
319 handle
= dlopen(p
, RTLD_LAZY
);
323 *rhandle
= (_citrus_module_t
)handle
;
329 _citrus_unload_module(_citrus_module_t handle
)
332 dlclose((void *)handle
);
339 _citrus_find_getops(_citrus_module_t handle
, const char *modname
,
347 _citrus_load_module(_citrus_module_t
*rhandle
, char const *modname
)
354 _citrus_unload_module(_citrus_module_t handle
)