2001-03-20 00:54:06 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Utility routines.
|
|
|
|
*
|
2004-03-15 13:59:22 +05:30
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
2001-03-20 00:54:06 +05:30
|
|
|
*
|
2006-05-20 00:59:19 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2001-03-20 00:54:06 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libbb.h"
|
|
|
|
|
2006-09-07 21:50:03 +05:30
|
|
|
int die_sleep;
|
2007-04-21 05:33:36 +05:30
|
|
|
#if ENABLE_FEATURE_PREFER_APPLETS || ENABLE_HUSH
|
2007-04-10 03:05:07 +05:30
|
|
|
jmp_buf die_jmp;
|
2007-04-11 03:08:30 +05:30
|
|
|
#endif
|
2006-09-07 21:50:03 +05:30
|
|
|
|
2007-04-11 03:08:30 +05:30
|
|
|
void xfunc_die(void)
|
2007-01-03 08:26:00 +05:30
|
|
|
{
|
2007-04-10 03:05:07 +05:30
|
|
|
if (die_sleep) {
|
2007-04-21 05:33:36 +05:30
|
|
|
if ((ENABLE_FEATURE_PREFER_APPLETS || ENABLE_HUSH)
|
|
|
|
&& die_sleep < 0
|
|
|
|
) {
|
2007-04-11 03:08:30 +05:30
|
|
|
/* Special case. We arrive here if NOFORK applet
|
|
|
|
* calls xfunc, which then decides to die.
|
|
|
|
* We don't die, but jump instead back to caller.
|
|
|
|
* NOFORK applets still cannot carelessly call xfuncs:
|
|
|
|
* p = xmalloc(10);
|
|
|
|
* q = xmalloc(10); // BUG! if this dies, we leak p!
|
|
|
|
*/
|
2007-05-24 17:48:16 +05:30
|
|
|
/* -2222 means "zero" (longjmp can't pass 0)
|
|
|
|
* run_nofork_applet() catches -2222. */
|
|
|
|
longjmp(die_jmp, xfunc_error_retval ? xfunc_error_retval : -2222);
|
2007-04-11 03:08:30 +05:30
|
|
|
}
|
2007-01-03 08:26:00 +05:30
|
|
|
sleep(die_sleep);
|
2007-04-10 03:05:07 +05:30
|
|
|
}
|
2007-01-03 08:26:00 +05:30
|
|
|
exit(xfunc_error_retval);
|
|
|
|
}
|
|
|
|
|
2006-03-07 02:17:33 +05:30
|
|
|
void bb_error_msg_and_die(const char *s, ...)
|
2001-03-20 00:54:06 +05:30
|
|
|
{
|
|
|
|
va_list p;
|
|
|
|
|
|
|
|
va_start(p, s);
|
2006-09-07 00:06:50 +05:30
|
|
|
bb_verror_msg(s, p, NULL);
|
2001-03-20 00:54:06 +05:30
|
|
|
va_end(p);
|
2007-04-11 03:08:30 +05:30
|
|
|
xfunc_die();
|
2001-03-20 00:54:06 +05:30
|
|
|
}
|