Operating System - HP-UX
1821261 Members
3128 Online
109632 Solutions
New Discussion юеВ

HP-UX 11.23, gcc4.3.1, __cxa_throw, application coredumps

 
SOLVED
Go to solution
blackwater
Regular Advisor

HP-UX 11.23, gcc4.3.1, __cxa_throw, application coredumps

So, we use gcc 4.3.1 on HP-UX 11.23/ia64. On exit my application coredumps.
In preceding releases of the application we used libc malloc() and in this release we use mallocNG malloc().


Our code in one of threads roughly looks like this:
int f()
{
if (condition) throw general_fault();
return 0;
}
int g()
{
try {
f()
} catch (general_fault&) {
std::cout << "Exception!";
}
}

And as I said already the application coredumps.

gdb 6.0 gives this backtrace:

psz_msg=0x9fffffff7f71a510 "Received SIGTERM : signal number 15 si_errno 0 signal code -1") at ossp_rt_registrator.cpp:13
#13 0x4000000000372eb0:0 in os_sp::app_env_log::sigterm_handler (num=15,
r=) at ../../../src/common/rating_shared/app_env_log.cpp:295
#14
#15 0xc00000000237a870:0 in uwx_decode_uinfo () at uwx_uinfo.c:88
#16 0xc0000000023756d0:0 in uwx_get_frame_info () at uwx_step.c:211
#17 0xc00000000237e460:0 in uwx_restore_markers () at uwx_step.c:347
#18 0xc0000000023a0390:0 in _Unwind_RaiseException ()
at ExceptionHandling.C:449
#19 0xc000000009e3d430 in __cxa_throw (obj=,
tinfo=0x600000000002bda8, dest=0x9fffffffbf64edf0)
at /tmp/gcc-4.3.1.tar.gz/gcc-4.3.1/libstdc++-v3/libsupc++/eh_throw.cc:71
#20 0x4000000000335600:0 in ip::raise (code=2138180472, mess=) at ../../../src/common/rating_lib/ip.cpp:73
#21 0x4000000000337130:0 in ip::general_socket::select (this=,
what=5, sec=, msec=)
at ../../../src/common/rating_lib/ip.cpp:243


If I get rid of throwing an exception in f() and use instead a return code like "return -1; /* -1 means error*/ " I have no coredump.



bash-3.00$ gcc -v
Using built-in specs.
Target: ia64-hp-hpux11.23
Configured with: /tmp/gcc-4.3.1.tar.gz/gcc-4.3.1/configure --host=ia64-hp-hpux11.23 --target=ia64-hp-hpux11.23 --build=ia64-hp-hpux11.23 --prefix=/opt/hp-gcc-4.3.1 --with-gnu-as --without-gnu-ld --with-ld=/usr/ccs/bin/ld --enable-threads=posix --enable-languages=c,c++ --with-gmp=/proj/opensrc/be/ia64-hp-hpux11.23 --with-mpfr=/proj/opensrc/be/ia64-hp-hpux11.23
Thread model: posix
gcc version 4.3.1 (GCC)


Here is log messages of my application:
09:46:16 Received signal. Received signal : signal number 2 si_errno 0 signal code 0

09:46:16 Received signal. Received SIGTERM : signal number 15 si_errno 0 signal code -1

09:46:16 Received signal. Received SIGBUS : signal number 10 si_errno 0 signal code 1 memory addr 9fffffff7f7177e8

Is it my mistake? I would appreciate any advice. By the way we do not get a coredump when our application exits on HP-UX 11.31/ia64.
22 REPLIES 22
Dennis Handly
Acclaimed Contributor

Re: HP-UX 11.23, gcc4.3.1, __cxa_throw, application coredumps

Do you have the latest libunwind patch, PHSS_40541?

>Is it my mistake?

What happens when you compile with aC++?

It could be a code generation bug by g++.

blackwater
Regular Advisor

Re: HP-UX 11.23, gcc4.3.1, __cxa_throw, application coredumps

Dennis, thank for your answer.

PHSS_40541 has been installed after your suggestion. However the application still coredumps on HP-UX 11.23/ia64.

Interestingly we ran a few times (with the same set of our libraries what we used on HP-UX 11.23 and of course with system libraries from HP-UX 11.31) the same application that coredumps on HP-UX 11.23 on HP-UX 11.31 and the application on HP-UX 11.31/ia64 exits without any problem and coredump.

We have this dependencies from system libraries:

libclntsh.so.10.1 => /u01/app/oracle/product/10.2.0/db/lib/libclntsh.so.10.1
libpthread.so.1 => /lib/hpux64/libpthread.so.1
libmallocng.so => /lib/hpux64/libmallocng.so
libm.so.1 => /lib/hpux64/libm.so.1
libunwind.so.1 => /lib/hpux64/libunwind.so.1
libc.so.1 => /lib/hpux64/libc.so.1
libnnz10.so => /u01/app/oracle/product/10.2.0/db/lib/libnnz10.so
librt.so.1 => /usr/lib/hpux64/librt.so.1
libnss_dns.so.1 => /usr/lib/hpux64/libnss_dns.so.1
libdl.so.1 => /usr/lib/hpux64/libdl.so.1
libnsl.so.1 => /usr/lib/hpux64/libnsl.so.1
libuca.so.1 => /usr/lib/hpux64/libuca.so.1
libxti.so.1 => /usr/lib/hpux64/libxti.so.1
blackwater
Regular Advisor

Re: HP-UX 11.23, gcc4.3.1, __cxa_throw, application coredumps

Other dependencies:

libstlport.so.5.1
libboost_thread-gcc-mt-p.so libboost_regex-gcc-mt-p.so
libstdc++.so.6
libgcc_s.so.0 =>


By the way we still haven't ported the application to aCC. It might take some time,
Dennis Handly
Acclaimed Contributor

Re: HP-UX 11.23, gcc4.3.1, __cxa_throw, application coredumps

>we do not get a coredump when our application exits on HP-UX 11.31/ia64.

What is the full stack trace? Are you doing that throw on 11.31?

Does it fail without mallocNG?
blackwater
Regular Advisor

Re: HP-UX 11.23, gcc4.3.1, __cxa_throw, application coredumps

Full backtrace:
---------------
Sometimes it looks like this:

#0 0xc00000000029ffb0:0 in kill+0x30 () from /lib/hpux64/libc.so.1
(gdb) bt
#0 0xc00000000029ffb0:0 in kill+0x30 () from /lib/hpux64/libc.so.1
#1 0xc0000000001c3510:0 in raise ()
at ../../../../../core/libs/libc/shared_em_64/../core/gen/raise.c:19
#2 0xc000000000260f30:0 in abort ()
at ../../../../../core/libs/libc/shared_em_64/../core/gen/abort_em.c:84
#3 0x4000000000372b40:0 in os_sp::app_env_log::sigbus_handler (num=10,
r=0x9fffffff7f714610)
at ../../../src/common/rating_shared/app_env_log.cpp:281
#4
#5 0xc0000000002a20b0:0 in time+0x30 () from /lib/hpux64/libc.so.1
#6 0xc00000000021f3a0:0 in syslog ()
at ../../../../../core/libs/libc/shared_em_64/../core/gen/syslog.c:245
#7 0x400000000033fe70:0 in sys_logger::sys_logger_impl::log_message (
this=0x60000000001036a0, type=6,
psz_format=0x9fffffff7f71b910 "Received SIGTERM : signal number 15 si_errno 0 signal code -1", args=0x9fffffff7f71b8e8)
at ../../../src/common/rating_lib/sys_logger.cpp:156
#8 0x4000000000340070:0 in sys_logger::sys_logger::log_message (

this=0x6000000000103690, type=6,
psz_format=0x9fffffff7f71b910 "Received SIGTERM : signal number 15 si_errno 0 signal code -1") at ../../../src/common/rating_lib/sys_logger.cpp:203
#9 0x4000000000374260:0 in os_sp::syslog_registrator::registr_signal_handler_msg (this=0x60000000000f8040, type=exit_e, numsig=15, ---Type to continue, or q to quit---
psz_msg=0x9fffffff7f71b910 "Received SIGTERM : signal number 15 si_errno 0 signal code -1") at ../../../src/common/rating_shared/app_env_log.cpp:40
#10 0x4000000000437240:0 in ossp_rt_registrator::registr_signal_handler_msg (
this=0x60000000000f8040, type=exit_e, numsig=15,
psz_msg=0x9fffffff7f71b910 "Received SIGTERM : signal number 15 si_errno 0 signal code -1") at ossp_rt_registrator.cpp:13
#11 0x4000000000372f00:0 in os_sp::app_env_log::sigterm_handler (num=15,
r=) at ../../../src/common/rating_shared/app_env_log.cpp:295
#12
#13 0x40000000012f87c0 in .stub+0 () at _ios_base.h:202
warning: Attempting to unwind past bad PC 0x40000000012f87c0
#14 0x4000000000335470:0 in ip::raise (code=4, mess=0x0)
at ../../../src/common/rating_lib/ip.cpp:73
#15 0x4000000000337180:0 in ip::general_socket::select (this=,
what=5, sec=, msec=)
at ../../../src/common/rating_lib/ip.cpp:245
#16 0x4000000000432870:0 in rating_server::listener::execute (
this=0x60000000003d5120) at ./connect_listener.cpp:172
#17 0x4000000000340370:0 in threads::thread::thread_proc (
th=0x60000000003d5120) at ../../../src/common/rating_lib/threads.cpp:246
#18 0x40000000003406f0:0 in start_routine_thread (p_arg=0x60000000003d5120)
at ../../../src/common/rating_lib/threads.cpp:18
#19 0xc000000000328f40:0 in __pthread_bound_body ()
at /ux/core/libs/threadslibs/src/common/pthreads/pthread.c:4594

Sometimes we get:

(gdb) bt
#0 0xc000000018997fb0:0 in kill+0x30 () from ./libc.so.1
#1 0xc0000000188bb510:0 in raise ()
at ../../../../../core/libs/libc/shared_em_64/../core/gen/raise.c:19
#2 0xc000000018958f30:0 in abort ()
at ../../../../../core/libs/libc/shared_em_64/../core/gen/abort_em.c:84
#3 0x4000000000372b40:0 in os_sp::app_env_log::sigbus_handler(int,__siginfo*,void*)+0xe0 ()
#4
#5 0xc00000001899a0b0:0 in time+0x30 () from ./libc.so.1
#6 0xc0000000189173a0:0 in syslog ()
at ../../../../../core/libs/libc/shared_em_64/../core/gen/syslog.c:245
#7 0x400000000033fe70:0 in sys_logger::sys_logger_impl::log_message(unsigned int,char const*,void*)+0x70 ()
#8 0x4000000000340070:0 in sys_logger::sys_logger::log_message(unsigned int,char const*,...)+0x70 ()
#9 0x4000000000374260:0 in os_sp::syslog_registrator::registr_signal_handler_msg(os_sp::evnt_registrator::type_handler_action_e,int,char const*)+0x80 ()
#10 0x4000000000437240:0 in ossp_rt_registrator::registr_signal_handler_msg(os_sp::evnt_registrator::type_handler_action_e,int,char const*)+0x40 ()
#11 0x4000000000372f00:0 in os_sp::app_env_log::sigterm_handler(int,__siginfo*,void*)+0xb0 ()
#12
#13 0x40000000012f87c0 in asn1::asn1_choice::remove_field(stlp_std::basic_string---Type to continue, or q to quit---~
,stlp_std::allocator > const&) ()
warning: Attempting to unwind past bad PC 0x40000000012f87c0
#14 0x4000000000335470:0 in ip::raise(int,char const*)+0x50 ()
#15 0x4000000000337180:0 in ip::general_socket::select(unsigned short,unsigned int,unsigned int) const+0x4e0 ()
#16 0x4000000000432870:0 in rating_server::listener::execute()+0x300 ()
#17 0x4000000000340370:0 in threads::thread::thread_proc(threads::thread*)
+0x1b0 ()
#18 0x40000000003406f0:0 in start_routine_thread+0x30 ()
#19 0xc0000000132fcf40:0 in __pthread_bound_body ()
at /ux/core/libs/threadslibs/src/common/pthreads/pthread.c:4594



Are you doing that throw on 11.31?
-----------------------------------
Yes. It was probably not clear from my post so I want to clarify this. We use the same executable file.
We built an executable file using gcc 4.3.1 on HP-UX 11.23 and then we run this executable on HP-UX 11.23 and on HP-UX 11.31.
On HP-UX 11.23 this executable sometimes coredumps on exit and sometimes exits without any problem.
On HP-UX 11-31 the same executable (built on HP-UX 11.23) always exits without any problem.

Building without mallocNG
-------------------------
We haven't built this release of the application without mallocNG so far.
blackwater
Regular Advisor

Re: HP-UX 11.23, gcc4.3.1, __cxa_throw, application coredumps

This kind of message is written on console when the application coredumps:

Either

Received SIGBUS : signal number 10 si_errno 0 signal code 0 memory addr 000000000000001f

or

Received SIGBUS : signal number 10 si_errno 0 signal code 0 memory addr 00000000000000c9
Dennis Handly
Acclaimed Contributor

Re: HP-UX 11.23, gcc4.3.1, __cxa_throw, application coredumps

>Sometimes it looks like this:

Are you using sigaltstack(2)?
Do you have a thread stack overflow?

>Sometimes we get:

Neither of these aborts in uwx_decode_uinfo, I would suggest you debug these where you have the source.

You could have blasted the linkage table.

>On HP-UX 11.23 this executable sometimes coredumps on exit

These stack traces don't like like "exit". Was that done in another thread?
blackwater
Regular Advisor

Re: HP-UX 11.23, gcc4.3.1, __cxa_throw, application coredumps

> Neither of these aborts in uwx_decode_uinfo,

It was here:

#0 0xc00000000029ffb0:0 in kill+0x30 () from /lib/hpux64/libc.so.1
(gdb) bt
#0 0xc00000000029ffb0:0 in kill+0x30 () from /lib/hpux64/libc.so.1
#1 0xc0000000001c3510:0 in raise ()
at ../../../../../core/libs/libc/shared_em_64/../core/gen/raise.c:19
#2 0xc000000000260f30:0 in abort ()
at ../../../../../core/libs/libc/shared_em_64/../core/gen/abort_em.c:84
#3 0x4000000000372af0:0 in os_sp::app_env_log::sigbus_handler (num=10,
r=0x9fffffff7f712610)
at ../../../src/common/rating_shared/app_env_log.cpp:281
#4
#5 0xc000000000279ab0:1 in T_19_73d5_cl___doprnt_main ()
at ../../../../../core/libs/libc/shared_em_64/../core/stdio/doprnt.c:299
#6 0xc0000000002715f0:0 in _doprnt ()
at ../../../../../core/libs/libc/shared_em_64/../core/stdio/doprnt.c:508
#7 0xc000000000294c60:0 in sprintf ()
at ../../../../../core/libs/libc/shared_em_64/../core/stdio/sprintf.c:37
#8 0xc00000000021f380:0 in syslog ()
at ../../../../../core/libs/libc/shared_em_64/../core/gen/syslog.c:243
#9 0x400000000033fe00:0 in sys_logger::sys_logger_impl::log_message (
this=0x60000000001036a0, type=6,
psz_format=0x9fffffff7f71a510 "Received SIGTERM : signal number 15 si_errno 0 signal code -1", args=0x9fffffff7f71a4e8)
at ../../../src/common/rating_lib/sys_logger.cpp:156
#10 0x4000000000340000:0 in sys_logger::sys_logger::log_message (

---Type to continue, or q to quit---
this=0x6000000000103690, type=6,
psz_format=0x9fffffff7f71a510 "Received SIGTERM : signal number 15 si_errno 0 signal code -1") at ../../../src/common/rating_lib/sys_logger.cpp:203
#11 0x4000000000374210:0 in os_sp::syslog_registrator::registr_signal_handler_msg (this=0x60000000000f8040, type=exit_e, numsig=15,
psz_msg=0x9fffffff7f71a510 "Received SIGTERM : signal number 15 si_errno 0 signal code -1") at ../../../src/common/rating_shared/app_env_log.cpp:40
#12 0x4000000000437260:0 in ossp_rt_registrator::registr_signal_handler_msg (
this=0x60000000000f8040, type=exit_e, numsig=15,
psz_msg=0x9fffffff7f71a510 "Received SIGTERM : signal number 15 si_errno 0 signal code -1") at ossp_rt_registrator.cpp:13
#13 0x4000000000372eb0:0 in os_sp::app_env_log::sigterm_handler (num=15,
r=) at ../../../src/common/rating_shared/app_env_log.cpp:295
#14
#15 0xc00000000237a870:0 in uwx_decode_uinfo () at uwx_uinfo.c:88
#16 0xc0000000023756d0:0 in uwx_get_frame_info () at uwx_step.c:211
#17 0xc00000000237e460:0 in uwx_restore_markers () at uwx_step.c:347
#18 0xc0000000023a0390:0 in _Unwind_RaiseException ()
at ExceptionHandling.C:449
#19 0xc000000009e3d430 in __cxa_throw (obj=,
tinfo=0x600000000002bda8, dest=0x9fffffffbf64edf0)
at /tmp/gcc-4.3.1.tar.gz/gcc-4.3.1/libstdc++-v3/libsupc++/eh_throw.cc:71
#20 0x4000000000335600:0 in ip::raise (code=2138180472, mess=) ---Type to continue, or q to quit---
at ../../../src/common/rating_lib/ip.cpp:73
#21 0x4000000000337130:0 in ip::general_socket::select (this=,
what=5, sec=, msec=)
at ../../../src/common/rating_lib/ip.cpp:243
#22 0x4000000000432830:0 in rating_server::listener::execute (
this=0x60000000003d3120) at ./connect_listener.cpp:172
#23 0x4000000000340300:0 in threads::thread::thread_proc (
th=0x60000000003d3120) at ../../../src/common/rating_lib/threads.cpp:246
#24 0x4000000000340680:0 in start_routine_thread (p_arg=0x60000000003d3120)
at ../../../src/common/rating_lib/threads.cpp:18
#25 0xc000000000328f40:0 in __pthread_bound_body ()
at /ux/core/libs/threadslibs/src/common/pthreads/pthread.c:4594


Dennis Handly
Acclaimed Contributor

Re: HP-UX 11.23, gcc4.3.1, __cxa_throw, application coredumps

>It was here:

From your stack traces:
1) You are in the middle of a throw and you get a SIGTERM. This is your issue.

2) You are in a .stub and you get SIGTERM. This is your issue.

3) You are in remove_field and get an unknown signal.

Basically if you are going to kill your process, you should expect to see SIGTERM in your signal handlers, coming from random locations.
blackwater
Regular Advisor

Re: HP-UX 11.23, gcc4.3.1, __cxa_throw, application coredumps

> 1) You are in the middle of a throw and you get a SIGTERM. This is your issue.

Good point.

Now my question is if it is correct when a function expects arguments like (int, const char*, ...) to give it just int and const char*?

I have taken a look in functions that are called in the backtrace and found the following code. The first function calls the second function and pass two arguments. The second function is defined as

void sys_logger::log_message(u_int32 type, const char* psz_format, ...)
{
va_list args;
va_start(args, psz_format );
p_impl -> log_message( type, psz_format, args );
va_end(args);
}

So it expects two named arguments and then variable number of unnamed arguments.

However in the code it never get any unnamed arguments, only first two ones.

I changed code of the first function that calls sys_logger::log_message() in this way:

Instead of :
SYS_LOGGER ->
log_message( type_msg, psz_msg );

I wrote:
SYS_LOGGER ->
log_message( type_msg, "%s", psz_msg );

Now there have been no coredumps.

So my question is if it is correct when a function expects arguments like (int, const char*, ...) to give it just int and const char*?
blackwater
Regular Advisor

Re: HP-UX 11.23, gcc4.3.1, __cxa_throw, application coredumps

According to the backtrace the application from sys_logger::sys_logger_impl::log_message() calls syslog() and that finally results in SIGBUS.

I took a look at sys_logger::sys_logger_impl::log_message():

void sys_logger_impl::log_message(u_int32 type, const char *psz_format, va_list args )
{
char buffer [4096];
vsnprintf( buffer, sizeof( buffer ), psz_format, args );
buffer[sizeof(buffer)-1] = 0;
syslog( type, "%s", buffer );
if (type != slmt_information) {
std::cout << buffer << std::endl;
}
}

As I said earlier if ... is an empty list then args is made of the empty list and this functions ends up with SIGBUS in the call to syslog().

If ... is not an empty list then args is not made of the empty list and this functions ends up correctly.
Dennis Handly
Acclaimed Contributor

Re: HP-UX 11.23, gcc4.3.1, __cxa_throw, application coredumps

>is correct when a function expects arguments like (int, const char*, ...) to give it just int and const char*?

Sure, you could pass that to printf all the time:
printf("hi guy\n");

>I changed code of the first function that calls sys_logger::log_message() in this way:

No need to do that. Of course log_message needs to not access the missing third parm.

>if ... is an empty list then args is made of the empty list and this functions ends up with SIGBUS in the call to syslog().

Then your foreign devil compiler is likely broken.
blackwater
Regular Advisor

Re: HP-UX 11.23, gcc4.3.1, __cxa_throw, application coredumps

Dennis, thank you for your answer.

One more question. I suspect that I have done again something wrong in my SIGTERM handler but I can find a bug.

So, unfortunately the error has not been fixed. It was possible to reproduce it yesterday but this morning I got it again.

I simplified code that handles SIGTERM in order to avoid as much as posssible my own functions. So now I have this code:


void CDECL_CALLING_CONVENTION app_env_log::sigterm_handler( int num, siginfo_t *r, void * )
{
syslog(6,"%s","HHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH");
b_terminated = true;
if (application_) {
application_->signal_stop();
application_ = 0;
}
}

And it coredumped in syslog. What is wrong?

#0 0xc00000000029ffb0:0 in kill+0x30 () from /lib/hpux64/libc.so.1
#1 0xc0000000001c3510:0 in raise ()
at ../../../../../core/libs/libc/shared_em_64/../core/gen/raise.c:19
#2 0xc000000000260f30:0 in abort ()
at ../../../../../core/libs/libc/shared_em_64/../core/gen/abort_em.c:84
#3 0x40000000003312b0:0 in os_sp::app_env_log::sigbus_handler (num=10,
r=0x9fffffff7f20e210)
at ../../../src/common/rating_shared/app_env_log.cpp:281
#4
#5 0xc0000000002a20b0:0 in time+0x30 () from /lib/hpux64/libc.so.1
#6 0xc00000000021f3a0:0 in syslog ()
at ../../../../../core/libs/libc/shared_em_64/../core/gen/syslog.c:245
#7 0x4000000000331600:0 in os_sp::app_env_log::sigterm_handler (num=960688,
r=0xe0000001308828e0)
at ../../../src/common/rating_shared/app_env_log.cpp:293
#8
#9 0xc000000003daee70:0 in uwx_decode_uinfo () at uwx_uinfo.c:168
#10 0xc000000003dadc00:0 in uwx_get_frame_info () at uwx_step.c:211
#11 0xc000000003db7020:0 in uwx_restore_markers () at uwx_step.c:347
#12 0xc000000003dccac0:0 in _Unwind_RaiseException ()
at ExceptionHandling.C:449
#13 0xc00000000f9d0430 in __cxa_throw (obj=,
tinfo=0x600000000002bc50, dest=0x9fffffffbf63ad50)
at /tmp/gcc-4.3.1.tar.gz/gcc-4.3.1/libstdc++-v3/libsupc++/eh_throw.cc:71
#14 0x40000000002f4070:0 in ip::raise (code=4, mess=)
at ../../../src/common/rating_lib/ip.cpp:73
#15 0x40000000002f4590:0 in ip::raise ()
at ../../../src/common/rating_lib/ip.cpp:77

This is code with line numbers:

291 void CDECL_CALLING_CONVENTION app_env_log::sigterm_handler( int num, siginfo_t *r, void * )
292 {
293 syslog(6,"%s","HHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH");
294 b_terminated = true;
295 if (application_) {
296 application_->signal_stop();
297 application_ = 0;
blackwater
Regular Advisor

Re: HP-UX 11.23, gcc4.3.1, __cxa_throw, application coredumps

Sorry, I misprinted one sentence.

One more question. I suspect that I have done again something wrong in my SIGTERM handler but I can't find a bug.
Dennis Handly
Acclaimed Contributor

Re: HP-UX 11.23, gcc4.3.1, __cxa_throw, application coredumps

>One more question.

One thing I forgot to ask, is what frame are you interested in? On several, you have 2 separate signals. And if you do get the first signal, you can't really expect to recover from it and the number of libc functions you can call is severely limited.

You may want to swap the order:
if (application_) {
temp = application_;
application_ = 0;
temp->signal_stop();
}
Or if lots of threads beating up on signals, use an atomic swap on application_.

>And it coredumped in syslog. What is wrong?

No, it got a signal in time(2) in frame 5. What signal did it get, SIGBUS it seems.

How big is your thread stack? You could have a thread stack overflow where the local variable in time(2) is in the guard page.

You can get the framesize by:
(gdb) frame 5
(gdb) p /x $save_sp
(gdb) frame XXX (where XXX is the one for __pthread_bound_body)
(gdb) p $sp - $save_sp
Dennis Handly
Acclaimed Contributor

Re: HP-UX 11.23, gcc4.3.1, __cxa_throw, application coredumps

Oops, that should be: You can get the framesize by:
(gdb) frame 5
(gdb) p /x $save_sp = $sp
(gdb) frame XXX (where XXX is the one for __pthread_bound_body)
(gdb) p $sp - $save_sp
blackwater
Regular Advisor

Re: HP-UX 11.23, gcc4.3.1, __cxa_throw, application coredumps

> How big is your thread stack? You could have a thread stack overflow where the local variable in time(2) is in the guard page.

(gdb) frame 5
(gdb) p /x $save_sp = $sp
$1 = 0x9fffffff7f213370
(gdb) f 19
#19 0xc000000000328f40:0 in __pthread_bound_body ()
at /ux/core/libs/threadslibs/src/common/pthreads/pthread.c:4594
4594 /ux/core/libs/threadslibs/src/common/pthreads/pthread.c: No such file or directory.
in /ux/core/libs/threadslibs/src/common/pthreads/pthread.c
Current language: auto; currently c
(gdb) p $sp - $save_sp
$2 = 31872

I had set PTHREAD_DEFAULT_STACK_SIZE before I ran the program:
export PTHREAD_DEFAULT_STACK_SIZE=1000000

Am I right that there is no stack overflow?
blackwater
Regular Advisor

Re: HP-UX 11.23, gcc4.3.1, __cxa_throw, application coredumps

I don't use sigaltstack. I have almost decided to use it but then I was told about sigwaitinfo(). Using sigwaitinfo() looks like a good idea. What is your advice on this, Dennis? At least I will not be restricted in what libc functons I can use.

Dennis Handly
Acclaimed Contributor
Solution

Re: HP-UX 11.23, gcc4.3.1, __cxa_throw, application coredumps

>Am I right that there is no stack overflow?

It doesn't seem like it. (Unless you are randomly using mprotect(2) on your stack. ;-)
So unless some evil person is doing "kill -BUS" all over, I'm not sure why the kernel is aborting in the time(2) syscall. If you use sigaction(2) and set SA_SIGINFO, you can get details on why the signal occurred.
syslog(3) is inappropriately using time(&var) instead of: var = time(NULL)
That's where I thought the overflow occurred.

You could try:
(gdb) frame 4
(gdb) p $reason
And again for frame 8.

>I have almost decided to use it

sigaltstack(2) and sigwaitinfo(2) are used for different purposes. The first if you may have a stack overflow.

>Using sigwaitinfo(2) looks like a good idea. What is your advice on this?

sigwaitinfo(2) seems ideal for signals like SIGTERM. But for SIGBUS and SIGSEGV, you want a signal handler.
blackwater
Regular Advisor

Re: HP-UX 11.23, gcc4.3.1, __cxa_throw, application coredumps

Should I call sigaltstack() once right after entering main() like this:

int main()
{
sigaltstack();
// creating threads and doing real work

return 0;
}

or allocating memory for sigaltstack() and calling sigaltstack() in main() and in each thread?
Dennis Handly
Acclaimed Contributor

Re: HP-UX 11.23, gcc4.3.1, __cxa_throw, application coredumps

>Should I call sigaltstack() once right after entering main() like this:

You need one per thread. Since you don't have a stack overflow you don't need it.
blackwater
Regular Advisor

Re: HP-UX 11.23, gcc4.3.1, __cxa_throw, application coredumps

I will change the application in order to use sigwaitinfo() for handling SIGTERM and SIGINT.