2006-05-08 03:20:50 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/* common.c
|
|
|
|
*
|
|
|
|
* Functions for debugging and logging as well as some other
|
|
|
|
* simple helper functions.
|
|
|
|
*
|
|
|
|
* Russ Dill <Russ.Dill@asu.edu> 2001-2003
|
|
|
|
* Rewritten by Vladimir Oleynik <dzo@simtreas.ru> (C) 2003
|
|
|
|
*
|
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
|
|
|
*/
|
|
|
|
|
2006-09-06 18:36:50 +00:00
|
|
|
#include <syslog.h>
|
2006-05-08 03:20:50 +00:00
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
|
|
|
|
|
2007-04-07 01:05:47 +00:00
|
|
|
const uint8_t MAC_BCAST_ADDR[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
|
|
|
|
|
2006-05-08 03:20:50 +00:00
|
|
|
long uptime(void)
|
|
|
|
{
|
|
|
|
struct sysinfo info;
|
|
|
|
sysinfo(&info);
|
|
|
|
return info.uptime;
|
|
|
|
}
|
|
|
|
|
2007-03-27 22:01:31 +00:00
|
|
|
#if ENABLE_FEATURE_PIDFILE
|
2007-03-26 13:22:35 +00:00
|
|
|
static const char *saved_pidfile;
|
|
|
|
|
|
|
|
static void pidfile_delete(void)
|
|
|
|
{
|
|
|
|
if (saved_pidfile)
|
2007-03-27 22:01:31 +00:00
|
|
|
remove_pidfile(saved_pidfile);
|
2007-03-26 13:22:35 +00:00
|
|
|
}
|
2007-03-27 22:01:31 +00:00
|
|
|
#endif
|
2007-03-26 13:22:35 +00:00
|
|
|
|
2007-03-27 22:01:31 +00:00
|
|
|
static void create_pidfile(const char *pidfile)
|
2006-05-08 03:20:50 +00:00
|
|
|
{
|
2007-03-27 22:01:31 +00:00
|
|
|
if (!pidfile)
|
|
|
|
return;
|
2006-05-08 03:20:50 +00:00
|
|
|
|
2007-03-27 22:01:31 +00:00
|
|
|
if (!write_pidfile(pidfile)) {
|
|
|
|
bb_perror_msg("cannot create pidfile %s", pidfile);
|
|
|
|
return;
|
2007-03-26 13:22:35 +00:00
|
|
|
}
|
2007-03-27 22:01:31 +00:00
|
|
|
#if ENABLE_FEATURE_PIDFILE
|
|
|
|
/* lockf(pid_fd, F_LOCK, 0); */
|
|
|
|
if (!saved_pidfile)
|
|
|
|
atexit(pidfile_delete);
|
|
|
|
saved_pidfile = pidfile;
|
|
|
|
#endif
|
2006-05-08 03:20:50 +00:00
|
|
|
}
|
|
|
|
|
2007-03-26 13:22:35 +00:00
|
|
|
void udhcp_make_pidfile(const char *pidfile)
|
2006-05-08 03:20:50 +00:00
|
|
|
{
|
2007-03-26 13:22:35 +00:00
|
|
|
/* Make sure fd 0,1,2 are open */
|
2007-01-27 22:21:12 +00:00
|
|
|
bb_sanitize_stdio();
|
2006-05-08 03:20:50 +00:00
|
|
|
|
2007-03-26 13:22:35 +00:00
|
|
|
/* Equivalent of doing a fflush after every \n */
|
2006-05-08 03:20:50 +00:00
|
|
|
setlinebuf(stdout);
|
|
|
|
|
2007-03-26 13:22:35 +00:00
|
|
|
/* Create pidfile */
|
2007-03-27 22:01:31 +00:00
|
|
|
create_pidfile(pidfile);
|
2006-05-08 03:20:50 +00:00
|
|
|
|
2006-10-03 21:00:43 +00:00
|
|
|
bb_info_msg("%s (v%s) started", applet_name, BB_VER);
|
2006-05-08 03:20:50 +00:00
|
|
|
}
|