bug-glibc
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: New dynamic loader (was Re: 2.1.96 & apache mod_setenv)


From: Petr Vandrovec
Subject: Re: New dynamic loader (was Re: 2.1.96 & apache mod_setenv)
Date: Fri, 10 Nov 2000 12:15:19 MET-1

On 10 Nov 00 at 0:37, Ulrich Drepper wrote:
> > ./x /usr/lib/libpthread.so /usr/lib/libnss_dns.so
> 
> You cannot dynamically load libpthread.  If it ever worked this is
> only by accident.  It might work without RTLD_GLOBAL but it definitely
> never will work (in the long run) with RTLD_GLOBAL.

Well, and why it works if I load libresolv.so manually, and not by
autoloading?

And to say it plainly again. This example is just one simplest.
There are other ones:

a = dlopen("/usr/lib/libdes.so", RTLD_GLOBAL | RTLD_LAZY);
b = dlopen("/usr/lib/librt.so", RTLD_GLOBAL | RTLD_LAZY);
dlclose(b);
dlclose(a);
c = dlopen("/usr/lib/libldap.so", RTLD_GLOBAL | RTLD_LAZY);
dlclose(c);

and dlclose(c) dies... because of librt.so is linked to libpthread.so.
Should I contact all maintainers to fix it? It worked before 2.1.96...

On my system, following libraries are (non-weakly) linked to
pthreads:

libGL, libatb, libflaim, libgthread, libguile, libgwrapguile, libnds,
libndssdk, libnspr4, libplc4, libplds4, librt, libsassdk...

That means that no module using any of these libraries can be loaded
by dlopen. So it should give reasonable error message on load, and not
sigsegv on unload.

And I repeat it again, it sometime happens even without libpthreads
involved. With glibc 2.1.95, my apache works. With 2.1.9[67]
it dies during initialization. As you can see below, it does NOT
load libpthread (grep SYS_open...), but it dies anyway, when it
loads mod_expires.so second time. Yes, it is silly that apache first 
loads all modules, then unloads them and loads them again, but it 
should definitely work (dlopen/dlclose returned (except last dlopen), 
it is just my silly grep that did not found dlclose return path; full 
ltrace -S output is at http://platan.vc.cvut.cz/apainit.txt).

If you need account on my machine, or if you need anything else, tell me.


SYS_open("/etc/ld.so.preload", 0, 00)             = -2
SYS_open("/etc/ld.so.cache", 0, 00)               = 3
SYS_close(3)                                      = 0
SYS_open("/lib/libm.so.6", 0, 010000306030)       = 3
SYS_close(3)                                      = 0
SYS_open("/lib/libcrypt.so.1", 0, 010000306030)   = 3
SYS_close(3)                                      = 0
SYS_open("/usr/lib/libgdbm.so.1", 0, 010000306030) = 3
SYS_close(3)                                      = 0
SYS_open("/usr/lib/libdb2.so.2", 0, 010000306030) = 3
SYS_close(3)                                      = 0
SYS_open("/lib/libdl.so.2", 0, 010000306030)      = 3
SYS_close(3)                                      = 0
SYS_open("/lib/libc.so.6", 0, 010000306030)       = 3
SYS_close(3)                                      = 0
SYS_open("/lib/libc.so.6", 0, 010000306030)       = 3
SYS_close(3)                                      = 0
SYS_open("/lib/libc.so.6", 0, 010000306030)       = 3
SYS_close(3)                                      = 0
SYS_open("/lib/libc.so.6", 0, 010000306030)       = 3
SYS_close(3)                                      = 0
SYS_open("/lib/libc.so.6", 0, 010000306030)       = 3
SYS_close(3)                                      = 0
SYS_open("/lib/libc.so.6", 0, 010000306030)       = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/conf/httpd.conf", 0, 0666) = 3
dlopen("/usr/local/apache/libexec/mod_mmap_static.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_mmap_static.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080ca5d0, "mmap_static_module")           = 0x4001a960
dlopen("/usr/local/apache/libexec/mod_vhost_alias.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_vhost_alias.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080ca8c8, "vhost_alias_module")           = 0x4001d860
dlopen("/usr/local/apache/libexec/mod_env.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_env.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080cab70, "env_module")                   = 0x40020080
dlopen("/usr/local/apache/libexec/mod_define.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_define.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080cae08, "define_module")                = 0x401c6620
dlopen("/usr/local/apache/libexec/mod_log_config.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_log_config.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080cb0a0, "config_log_module")            = 0x401cb1a0
dlopen("/usr/local/apache/libexec/mod_log_agent.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_log_agent.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080cb340, "agent_log_module")             = 0x401cde80
dlopen("/usr/local/apache/libexec/mod_log_referer.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_log_referer.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080cb5e8, "referer_log_module")           = 0x401d1140
dlopen("/usr/local/apache/libexec/mod_mime_magic.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_mime_magic.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080cb890, "mime_magic_module")            = 0x401d7d00
dlopen("/usr/local/apache/libexec/mod_mime.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_mime.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080cbb30, "mime_module")                  = 0x401dbd00
dlopen("/usr/local/apache/libexec/mod_negotiation.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_negotiation.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080cbdd0, "negotiation_module")           = 0x401e2b80
dlopen("/usr/local/apache/libexec/mod_status.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_status.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080cc0b8, "status_module")                = 0x401e8160
dlopen("/usr/local/apache/libexec/mod_info.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_info.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080cc350, "info_module")                  = 0x401edcc0
dlopen("/usr/local/apache/libexec/mod_include.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_include.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080cc5e8, "includes_module")              = 0x401f6d80
dlopen("/usr/local/apache/libexec/mod_autoindex.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_autoindex.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080cc888, "autoindex_module")             = 0x401feae0
dlopen("/usr/local/apache/libexec/mod_dir.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_dir.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080ccb28, "dir_module")                   = 0x40201180
dlopen("/usr/local/apache/libexec/mod_cgi.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_cgi.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080ccdc0, "cgi_module")                   = 0x40205aa0
dlopen("/usr/local/apache/libexec/mod_asis.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_asis.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080cd058, "asis_module")                  = 0x40207d00
dlopen("/usr/local/apache/libexec/mod_imap.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_imap.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080cd2f0, "imap_module")                  = 0x4020c1e0
dlopen("/usr/local/apache/libexec/mod_actions.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_actions.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080cd588, "action_module")                = 0x4020f260
dlopen("/usr/local/apache/libexec/mod_speling.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_speling.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080cd888, "speling_module")               = 0x40212fa0
dlopen("/usr/local/apache/libexec/mod_userdir.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_userdir.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080cdae8, "userdir_module")               = 0x40216340
dlopen("/usr/local/apache/libexec/mod_alias.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_alias.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080cdd88, "alias_module")                 = 0x40219a80
dlopen("/usr/local/apache/libexec/mod_rewrite.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_rewrite.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080ce020, "rewrite_module")               = 0x40227aa0
dlopen("/usr/local/apache/libexec/mod_access.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_access.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080d02e0, "access_module")                = 0x4022aa00
dlopen("/usr/local/apache/libexec/mod_auth.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_auth.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080d0578, "auth_module")                  = 0x4022d900
dlopen("/usr/local/apache/libexec/mod_auth_anon.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_auth_anon.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080d0810, "anon_auth_module")             = 0x402300c0
dlopen("/usr/local/apache/libexec/mod_auth_db.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_auth_db.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080d0ab0, "db_auth_module")               = 0x40233580
dlopen("/usr/local/apache/libexec/mod_digest.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_digest.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080d0d50, "digest_module")                = 0x40236a60
dlopen("/usr/local/apache/libexec/libproxy.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/libproxy.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080d1070, "proxy_module")                 = 0x4024a4a0
dlopen("/usr/local/apache/libexec/mod_cern_meta.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_cern_meta.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080d19b0, "cern_meta_module")             = 0x4024d5c0
dlopen("/usr/local/apache/libexec/mod_expires.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_expires.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080d1c50, "expires_module")               = 0x40250800
dlopen("/usr/local/apache/libexec/mod_headers.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_headers.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080d1ef0, "headers_module")               = 0x40253060
dlopen("/usr/local/apache/libexec/mod_usertrack.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_usertrack.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080d2190, "usertrack_module")             = 0x40256740
dlopen("/usr/local/apache/libexec/mod_example.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_example.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080d2430, "example_module")               = 0x4025a620
dlopen("/usr/local/apache/libexec/mod_unique_id.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_unique_id.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080d8700, "unique_id_module")             = 0x4025d2a0
dlopen("/usr/local/apache/libexec/mod_setenvif.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_setenvif.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
dlsym(0x080d89a0, "setenvif_module")              = 0x40260920
dlopen("/usr/local/apache/libexec/libssl.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/libssl.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
SYS_open("/etc/ld.so.cache", 0, 07)               = 4
SYS_close(4)                                      = 0
SYS_open("/usr/lib/libssl.so.0", 0, 010012226030) = 4
SYS_close(4)                                      = 0
SYS_open("/usr/lib/libcrypto.so.0", 0, 010012226030) = 4
SYS_close(4)                                      = 0
dlsym(0x080d8c38, "ssl_module")                   = 0x4028d220
dlopen("/usr/local/apache/libexec/libphp4.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/libphp4.so", 0, 027777751344) = 4
SYS_close(4)                                      = 0
SYS_open("/etc/ld.so.cache", 0, 010)              = 4
SYS_close(4)                                      = 0
SYS_open("/lib/libpam.so.0", 0, 010012226030)     = 4
SYS_close(4)                                      = 0
SYS_open("/usr/lib/libz.so.1", 0, 010012226030)   = 4
SYS_close(4)                                      = 0
SYS_open("/usr/lib/libldap.so.2", 0, 010012226030) = 4
SYS_close(4)                                      = 0
SYS_open("/usr/lib/liblber.so.2", 0, 010012226030) = 4
SYS_close(4)                                      = 0
SYS_open("/usr/lib/libgd-gif.so.1", 0, 010012226030) = 4
SYS_close(4)                                      = 0
SYS_open("/lib/libresolv.so.2", 0, 010012226030)  = 4
SYS_close(4)                                      = 0
SYS_open("/lib/libnsl.so.1", 0, 010012226030)     = 4
SYS_close(4)                                      = 0
SYS_open("/usr/lib/liblber.so.2", 0, 010012226030) = 4
SYS_close(4)                                      = 0
SYS_open("/lib/libnsl.so.1", 0, 010012226030)     = 4
SYS_close(4)                                      = 0
SYS_open("/lib/libresolv.so.2", 0, 010012226030)  = 4
SYS_close(4)                                      = 0
SYS_open("/usr/lib/libsasl.so.7", 0, 010012226030) = 4
SYS_close(4)                                      = 0
SYS_open("/lib/libpam.so.0", 0, 010012226030)     = 4
SYS_close(4)                                      = 0
dlsym(0x080efc60, "php4_module")                  = 0x4048b640
SYS_close(4)                                      = 0
SYS_close(4)                                      = 0
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/conf/srm.conf", 0, 0666) = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/conf/access.conf", 0, 0666) = 3
SYS_close(3)                                      = 0
SYS_open("/etc/resolv.conf", 0, 0666)             = 3
SYS_close(3)                                      = 0
SYS_close(3)                                      = 0
SYS_open("/etc/nsswitch.conf", 0, 0666)           = 3
SYS_close(3)                                      = 0
SYS_open("/etc/ld.so.cache", 0, 00)               = 3
SYS_close(3)                                      = 0
SYS_open("/lib/libnss_files.so.2", 0, 010012226030) = 3
SYS_close(3)                                      = 0
SYS_open("/etc/host.conf", 0, 0666)               = 3
SYS_close(3)                                      = 0
SYS_open("/etc/hosts", 0, 0666)                   = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/logs/error_log", 1089, 0666) = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/logs/intro/error_log", 1089, 0666) = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/logs/dialogeasy/error_log", 1089, 0666) = 3
SYS_close(3)                                      = 0
SYS_open("./php.ini", 0, 0666)                    = -2
SYS_open("/php.ini", 0, 0666)                     = -2
SYS_open("/usr/local/lib/php.ini", 0, 0666)       = 3
SYS_open("/usr/local/lib/php_auth_kerb.so", 0, 027777763744) = 4
SYS_close(4)                                      = 0
SYS_open("/etc/ld.so.cache", 0, 07)               = 4
SYS_close(4)                                      = 0
SYS_open("/usr/lib/libkrb5.so.13", 0, 010025456030) = 4
SYS_close(4)                                      = 0
SYS_open("/usr/lib/libasn1.so.2", 0, 010025456030) = 4
SYS_close(4)                                      = 0
SYS_open("/usr/lib/libroken.so.9", 0, 010025456030) = 4
SYS_close(4)                                      = 0
SYS_open("/usr/lib/libdes.so.2", 0, 010025456030) = 4
SYS_close(4)                                      = 0
SYS_open("/usr/local/lib/php_auth_nds.so", 0, 027777763744) = 4
SYS_close(4)                                      = 0
SYS_open("/etc/ld.so.cache", 0, 07)               = 4
SYS_close(4)                                      = 0
SYS_open("/usr/lib/libncp.so.2.3", 0, 010025456030) = 4
SYS_close(4)                                      = 0
SYS_close(3)                                      = 0
SYS_open("/etc/ld.so.cache", 0, 027777771064)     = 3
SYS_close(3)                                      = 0
SYS_open("/lib/libnss_db.so.2", 0, 010025456030)  = 3
SYS_close(3)                                      = 0
SYS_open("/var/lib/misc/protocols.db", 0, 0660)   = -2
SYS_open("/etc/protocols", 0, 0666)               = 3
SYS_close(3)                                      = 0
SYS_open("/var/lib/misc/protocols.db", 0, 0660)   = -2
SYS_open("/etc/protocols", 0, 0666)               = 3
SYS_close(3)                                      = 0
SYS_open("/var/lib/misc/services.db", 0, 0660)    = -2
SYS_open("/etc/services", 0, 0666)                = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/logs/ssl_engine_log", 1089, 0666) = 3
SYS_close(3)                                      = 0
SYS_open("/etc/localtime", 0, 0666)               = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/conf/ssl.crt/server.crt", 0, 0666) = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/conf/ssl.key/server.key", 0, 0666) = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/conf/ssl.crt/server.crt", 0, 0666) = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/conf/ssl.key/server.key", 0, 0666) = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/conf/ssl.crt/server.crt", 0, 0666) = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/conf/ssl.key/server.key", 0, 0666) = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/conf/ssl.crt/server.crt", 0, 0666) = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/conf/ssl.key/server.key", 0, 0666) = 3
SYS_close(3)                                      = 0
SYS_open("/dev/urandom", 0, 0666)                 = 3
SYS_close(3)                                      = 0
SYS_close(3)                                      = 0
SYS_open("/etc/hosts", 0, 0666)                   = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/conf/mime.types", 0, 0666) = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/conf/magic", 0, 0666) = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/conf/magic", 0, 0666) = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/conf/magic", 0, 0666) = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/conf/magic", 0, 0666) = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/conf/magic", 0, 0666) = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/conf/magic", 0, 0666) = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/conf/magic", 0, 0666) = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/logs/access_log", 1089, 0644) = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/logs/intro/access_log", 1089, 0644) = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/logs/dialogeasy/access_log", 1089, 0644) = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/logs/access_log", 1089, 0644) = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/logs/ssl_request_log", 1089, 0644) = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/logs/access_log", 1089, 0644) = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/logs/ssl_request_log", 1089, 0644) = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/logs/access_log", 1089, 0644) = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/logs/ssl_request_log", 1089, 0644) = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/logs/access_log", 1089, 0644) = 3
SYS_close(3)                                      = 0
SYS_open("/usr/local/apache/logs/ssl_request_log", 1089, 0644) = 3
SYS_close(3)                                      = 0
SYS_close(29)                                     = 0
SYS_close(28)                                     = 0
SYS_close(27)                                     = 0
SYS_close(26)                                     = 0
SYS_close(25)                                     = 0
SYS_close(24)                                     = 0
SYS_close(23)                                     = 0
SYS_close(22)                                     = 0
SYS_close(21)                                     = 0
SYS_close(20)                                     = 0
SYS_close(19)                                     = 0
SYS_close(18)                                     = 0
dlclose(0x080efc60 <unfinished ...>
dlclose(0x080d8c38 <unfinished ...>
dlclose(0x080d89a0 <unfinished ...>
dlclose(0x080d8700 <unfinished ...>
dlclose(0x080d2430 <unfinished ...>
dlclose(0x080d2190 <unfinished ...>
dlclose(0x080d1ef0 <unfinished ...>
dlclose(0x080d1c50 <unfinished ...>
dlclose(0x080d19b0 <unfinished ...>
dlclose(0x080d1070 <unfinished ...>
dlclose(0x080d0d50 <unfinished ...>
dlclose(0x080d0ab0 <unfinished ...>
dlclose(0x080d0810 <unfinished ...>
dlclose(0x080d0578 <unfinished ...>
dlclose(0x080d02e0 <unfinished ...>
dlclose(0x080ce020 <unfinished ...>
dlclose(0x080cdd88 <unfinished ...>
dlclose(0x080cdae8 <unfinished ...>
dlclose(0x080cd888 <unfinished ...>
dlclose(0x080cd588 <unfinished ...>
dlclose(0x080cd2f0 <unfinished ...>
dlclose(0x080cd058 <unfinished ...>
dlclose(0x080ccdc0 <unfinished ...>
dlclose(0x080ccb28 <unfinished ...>
dlclose(0x080cc888 <unfinished ...>
dlclose(0x080cc5e8 <unfinished ...>
dlclose(0x080cc350 <unfinished ...>
dlclose(0x080cc0b8 <unfinished ...>
dlclose(0x080cbdd0 <unfinished ...>
dlclose(0x080cbb30 <unfinished ...>
dlclose(0x080cb890 <unfinished ...>
dlclose(0x080cb5e8 <unfinished ...>
dlclose(0x080cb340 <unfinished ...>
dlclose(0x080cb0a0 <unfinished ...>
dlclose(0x080cae08 <unfinished ...>
dlclose(0x080cab70 <unfinished ...>
dlclose(0x080ca8c8 <unfinished ...>
dlclose(0x080ca5d0 <unfinished ...>
SYS_open("/usr/local/apache/conf/httpd.conf", 0, 0666) = 3
dlopen("/usr/local/apache/libexec/mod_mmap_static.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_mmap_static.so", 0, 027777751264) = 4
SYS_close(4)                                      = 0
dlsym(0x08101388, "mmap_static_module")           = 0x4001b960
dlopen("/usr/local/apache/libexec/mod_vhost_alias.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_vhost_alias.so", 0, 027777751264) = 4
SYS_close(4)                                      = 0
dlsym(0x08105aa8, "vhost_alias_module")           = 0x4001e860
dlopen("/usr/local/apache/libexec/mod_env.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_env.so", 0, 027777751264) = 4
SYS_close(4)                                      = 0
dlsym(0x08142810, "env_module")                   = 0x401c6080
dlopen("/usr/local/apache/libexec/mod_define.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_define.so", 0, 027777751264) = 4
SYS_close(4)                                      = 0
dlsym(0x08142aa8, "define_module")                = 0x401c9620
dlopen("/usr/local/apache/libexec/mod_log_config.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_log_config.so", 0, 027777751264) = 4
SYS_close(4)                                      = 0
dlsym(0x08142d40, "config_log_module")            = 0x401ce1a0
dlopen("/usr/local/apache/libexec/mod_log_agent.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_log_agent.so", 0, 027777751264) = 4
SYS_close(4)                                      = 0
dlsym(0x08142fe0, "agent_log_module")             = 0x401d0e80
dlopen("/usr/local/apache/libexec/mod_log_referer.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_log_referer.so", 0, 027777751264) = 4
SYS_close(4)                                      = 0
dlsym(0x08143288, "referer_log_module")           = 0x401d4140
dlopen("/usr/local/apache/libexec/mod_mime_magic.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_mime_magic.so", 0, 027777751264) = 4
SYS_close(4)                                      = 0
dlsym(0x080faa58, "mime_magic_module")            = 0x401dad00
dlopen("/usr/local/apache/libexec/mod_mime.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_mime.so", 0, 027777751264) = 4
SYS_close(4)                                      = 0
dlsym(0x080d1048, "mime_module")                  = 0x401ded00
dlopen("/usr/local/apache/libexec/mod_negotiation.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_negotiation.so", 0, 027777751264) = 4
SYS_close(4)                                      = 0
dlsym(0x080fcc60, "negotiation_module")           = 0x401e5b80
dlopen("/usr/local/apache/libexec/mod_status.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_status.so", 0, 027777751264) = 4
SYS_close(4)                                      = 0
dlsym(0x080fefd0, "status_module")                = 0x401eb160
dlopen("/usr/local/apache/libexec/mod_info.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_info.so", 0, 027777751264) = 4
SYS_close(4)                                      = 0
dlsym(0x080f86a0, "info_module")                  = 0x401f0cc0
dlopen("/usr/local/apache/libexec/mod_include.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_include.so", 0, 027777751264) = 4
SYS_close(4)                                      = 0
dlsym(0x0813e708, "includes_module")              = 0x401f9d80
dlopen("/usr/local/apache/libexec/mod_autoindex.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_autoindex.so", 0, 027777751264) = 4
SYS_close(4)                                      = 0
dlsym(0x0813e9a8, "autoindex_module")             = 0x40201ae0
dlopen("/usr/local/apache/libexec/mod_dir.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_dir.so", 0, 027777751264) = 4
SYS_close(4)                                      = 0
dlsym(0x08103540, "dir_module")                   = 0x40204180
dlopen("/usr/local/apache/libexec/mod_cgi.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_cgi.so", 0, 027777751264) = 4
SYS_close(4)                                      = 0
dlsym(0x081037d8, "cgi_module")                   = 0x40208aa0
dlopen("/usr/local/apache/libexec/mod_asis.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_asis.so", 0, 027777751264) = 4
SYS_close(4)                                      = 0
dlsym(0x08132340, "asis_module")                  = 0x40020d00
dlopen("/usr/local/apache/libexec/mod_imap.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_imap.so", 0, 027777751264) = 4
SYS_close(4)                                      = 0
dlsym(0x081325b8, "imap_module")                  = 0x4020d1e0
dlopen("/usr/local/apache/libexec/mod_actions.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_actions.so", 0, 027777751264) = 4
SYS_close(4)                                      = 0
dlsym(0x08132850, "action_module")                = 0x40210260
dlopen("/usr/local/apache/libexec/mod_speling.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_speling.so", 0, 027777751264) = 4
SYS_close(4)                                      = 0
dlsym(0x080f5ec8, "speling_module")               = 0x40213fa0
dlopen("/usr/local/apache/libexec/mod_userdir.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_userdir.so", 0, 027777751264) = 4
SYS_close(4)                                      = 0
dlsym(0x080f6168, "userdir_module")               = 0x40217340
dlopen("/usr/local/apache/libexec/mod_alias.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_alias.so", 0, 027777751264) = 4
SYS_close(4)                                      = 0
dlsym(0x080f6408, "alias_module")                 = 0x4021aa80
dlopen("/usr/local/apache/libexec/mod_rewrite.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_rewrite.so", 0, 027777751264) = 4
SYS_close(4)                                      = 0
dlsym(0x080d86d0, "rewrite_module")               = 0x40228aa0
dlopen("/usr/local/apache/libexec/mod_access.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_access.so", 0, 027777751264) = 4
SYS_close(4)                                      = 0
dlsym(0x080d8940, "access_module")                = 0x4022ba00
dlopen("/usr/local/apache/libexec/mod_auth.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_auth.so", 0, 027777751264) = 4
SYS_close(4)                                      = 0
dlsym(0x080d8bd8, "auth_module")                  = 0x4022e900
dlopen("/usr/local/apache/libexec/mod_auth_anon.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_auth_anon.so", 0, 027777751264) = 4
SYS_close(4)                                      = 0
dlsym(0x080d8e70, "anon_auth_module")             = 0x402310c0
dlopen("/usr/local/apache/libexec/mod_auth_db.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_auth_db.so", 0, 027777751264) = 4
SYS_close(4)                                      = 0
dlsym(0x08117910, "db_auth_module")               = 0x40234580
dlopen("/usr/local/apache/libexec/mod_digest.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_digest.so", 0, 027777751264) = 4
SYS_close(4)                                      = 0
dlsym(0x08117bb0, "digest_module")                = 0x40237a60
dlopen("/usr/local/apache/libexec/libproxy.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/libproxy.so", 0, 027777751264) = 4
SYS_close(4)                                      = 0
dlsym(0x08117e48, "proxy_module")                 = 0x4024b4a0
dlopen("/usr/local/apache/libexec/mod_cern_meta.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_cern_meta.so", 0, 027777751264) = 4
SYS_close(4)                                      = 0
dlsym(0x081180e0, "cern_meta_module")             = 0x4024e5c0
dlopen("/usr/local/apache/libexec/mod_expires.so", 258 <unfinished ...>
SYS_open("/usr/local/apache/libexec/mod_expires.so", 0, 027777751264) = 4
SYS_close(4)                                      = 0
--- SIGSEGV (Segmentation fault) ---
+++ killed by SIGSEGV +++

                                                Thanks,
                                                    Petr Vandrovec
                                                    address@hidden
                                                    



reply via email to

[Prev in Thread] Current Thread [Next in Thread]