2001-03-19 19:24:06 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Utility routines.
|
|
|
|
*
|
2004-03-15 08:29:22 +00:00
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
2001-03-19 19:24:06 +00:00
|
|
|
*
|
2006-05-19 19:29:19 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2001-03-19 19:24:06 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libbb.h"
|
|
|
|
|
2006-09-07 16:20:03 +00:00
|
|
|
int die_sleep;
|
2007-04-21 00:03:36 +00:00
|
|
|
#if ENABLE_FEATURE_PREFER_APPLETS || ENABLE_HUSH
|
2007-04-09 21:35:07 +00:00
|
|
|
jmp_buf die_jmp;
|
2007-04-10 21:38:30 +00:00
|
|
|
#endif
|
2006-09-07 16:20:03 +00:00
|
|
|
|
2007-04-10 21:38:30 +00:00
|
|
|
void xfunc_die(void)
|
2007-01-03 02:56:00 +00:00
|
|
|
{
|
2007-04-09 21:35:07 +00:00
|
|
|
if (die_sleep) {
|
2007-04-21 00:03:36 +00:00
|
|
|
if ((ENABLE_FEATURE_PREFER_APPLETS || ENABLE_HUSH)
|
|
|
|
&& die_sleep < 0
|
|
|
|
) {
|
2007-04-10 21:38:30 +00:00
|
|
|
/* 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 12:18:16 +00:00
|
|
|
/* -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-10 21:38:30 +00:00
|
|
|
}
|
2007-01-03 02:56:00 +00:00
|
|
|
sleep(die_sleep);
|
2007-04-09 21:35:07 +00:00
|
|
|
}
|
2007-01-03 02:56:00 +00:00
|
|
|
exit(xfunc_error_retval);
|
|
|
|
}
|
|
|
|
|
2006-03-06 20:47:33 +00:00
|
|
|
void bb_error_msg_and_die(const char *s, ...)
|
2001-03-19 19:24:06 +00:00
|
|
|
{
|
|
|
|
va_list p;
|
|
|
|
|
|
|
|
va_start(p, s);
|
2006-09-06 18:36:50 +00:00
|
|
|
bb_verror_msg(s, p, NULL);
|
2001-03-19 19:24:06 +00:00
|
|
|
va_end(p);
|
2007-04-10 21:38:30 +00:00
|
|
|
xfunc_die();
|
2001-03-19 19:24:06 +00:00
|
|
|
}
|