summaryrefslogtreecommitdiff
path: root/lang/smalltalk/patches/patch-aj
diff options
context:
space:
mode:
Diffstat (limited to 'lang/smalltalk/patches/patch-aj')
-rw-r--r--lang/smalltalk/patches/patch-aj95
1 files changed, 95 insertions, 0 deletions
diff --git a/lang/smalltalk/patches/patch-aj b/lang/smalltalk/patches/patch-aj
new file mode 100644
index 00000000000..2df771077bd
--- /dev/null
+++ b/lang/smalltalk/patches/patch-aj
@@ -0,0 +1,95 @@
+$NetBSD: patch-aj,v 1.1 2010/04/09 01:54:21 obache Exp $
+
+apply CVE-2009-3736 patch
+http://git.savannah.gnu.org/gitweb/?p=smalltalk.git;a=commit;h=232557c9e5a24f5dbd18ad9a2106cafb74e4e0cf
+
+--- lib-src/ltdl.c
++++ lib-src/ltdl.c
+@@ -2164,7 +2164,8 @@ static int trim LT_PARAMS((char **dest,
+ static int try_dlopen LT_PARAMS((lt_dlhandle *handle,
+ const char *filename));
+ static int tryall_dlopen LT_PARAMS((lt_dlhandle *handle,
+- const char *filename));
++ const char *filename,
++ const char * useloader));
+ static int unload_deplibs LT_PARAMS((lt_dlhandle handle));
+ static int lt_argz_insert LT_PARAMS((char **pargz,
+ size_t *pargz_len,
+@@ -2350,9 +2351,10 @@ lt_dlexit ()
+ }
+
+ static int
+-tryall_dlopen (handle, filename)
++tryall_dlopen (handle, filename, useloader)
+ lt_dlhandle *handle;
+ const char *filename;
++ const char *useloader;
+ {
+ lt_dlhandle cur;
+ lt_dlloader *loader;
+@@ -2419,6 +2421,11 @@ tryall_dlopen (handle, filename)
+
+ while (loader)
+ {
++ if (useloader && strcmp(loader->loader_name, useloader))
++ {
++ loader = loader->next;
++ continue;
++ }
+ lt_user_data data = loader->dlloader_data;
+
+ cur->module = loader->module_open (data, filename);
+@@ -2488,7 +2495,7 @@ tryall_dlopen_module (handle, prefix, dirname, dlname)
+ error += tryall_dlopen_module (handle,
+ (const char *) 0, prefix, filename);
+ }
+- else if (tryall_dlopen (handle, filename) != 0)
++ else if (tryall_dlopen (handle, filename, NULL) != 0)
+ {
+ ++error;
+ }
+@@ -2509,7 +2516,7 @@ find_module (handle, dir, libdir, dlname, old_name, installed)
+ /* Try to open the old library first; if it was dlpreopened,
+ we want the preopened version of it, even if a dlopenable
+ module is available. */
+- if (old_name && tryall_dlopen (handle, old_name) == 0)
++ if (old_name && tryall_dlopen (handle, old_name, "dlpreload") == 0)
+ {
+ return 0;
+ }
+@@ -2773,7 +2780,7 @@ find_handle_callback (filename, data, ignored)
+
+ /* Try to dlopen the file, but do not continue searching in any
+ case. */
+- if (tryall_dlopen (handle, filename) != 0)
++ if (tryall_dlopen (handle, filename,NULL) != 0)
+ *handle = 0;
+
+ return 1;
+@@ -3058,7 +3065,7 @@ try_dlopen (phandle, filename)
+ /* lt_dlclose()ing yourself is very bad! Disallow it. */
+ LT_DLSET_FLAG (*phandle, LT_DLRESIDENT_FLAG);
+
+- if (tryall_dlopen (&newhandle, 0) != 0)
++ if (tryall_dlopen (&newhandle, 0, NULL) != 0)
+ {
+ LT_DLFREE (*phandle);
+ return 1;
+@@ -3180,7 +3187,7 @@ try_dlopen (phandle, filename)
+ }
+ #endif
+ }
+- if (!file)
++ else
+ {
+ file = fopen (filename, LT_READTEXT_MODE);
+ }
+@@ -3364,7 +3371,7 @@ try_dlopen (phandle, filename)
+ #endif
+ )))
+ {
+- if (tryall_dlopen (&newhandle, filename) != 0)
++ if (tryall_dlopen (&newhandle, filename, NULL) != 0)
+ {
+ newhandle = NULL;
+ }