2006-06-04 01:19:21 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2001-03-21 00:48:10 +05:30
|
|
|
/*
|
|
|
|
* adjtimex.c - read, and possibly modify, the Linux kernel `timex' variables.
|
|
|
|
*
|
|
|
|
* Originally written: October 1997
|
|
|
|
* Last hack: March 2001
|
|
|
|
* Copyright 1997, 2000, 2001 Larry Doolittle <LRDoolittle@lbl.gov>
|
|
|
|
*
|
|
|
|
* busyboxed 20 March 2001, Larry Doolittle <ldoolitt@recycle.lbl.gov>
|
2006-06-04 01:19:21 +05:30
|
|
|
*
|
2006-05-28 03:38:01 +05:30
|
|
|
* Licensed under GPLv2 or later, see file License in this tarball for details.
|
2001-03-21 00:48:10 +05:30
|
|
|
*/
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2001-03-21 00:48:10 +05:30
|
|
|
#include <sys/timex.h>
|
|
|
|
|
2007-11-04 09:40:17 +05:30
|
|
|
static const uint16_t statlist_bit[] = {
|
|
|
|
STA_PLL,
|
|
|
|
STA_PPSFREQ,
|
|
|
|
STA_PPSTIME,
|
|
|
|
STA_FLL,
|
|
|
|
STA_INS,
|
|
|
|
STA_DEL,
|
|
|
|
STA_UNSYNC,
|
|
|
|
STA_FREQHOLD,
|
|
|
|
STA_PPSSIGNAL,
|
|
|
|
STA_PPSJITTER,
|
|
|
|
STA_PPSWANDER,
|
|
|
|
STA_PPSERROR,
|
|
|
|
STA_CLOCKERR,
|
|
|
|
0
|
2007-08-13 02:28:27 +05:30
|
|
|
};
|
2007-11-04 09:40:17 +05:30
|
|
|
static const char statlist_name[] =
|
|
|
|
"PLL" "\0"
|
|
|
|
"PPSFREQ" "\0"
|
|
|
|
"PPSTIME" "\0"
|
|
|
|
"FFL" "\0"
|
|
|
|
"INS" "\0"
|
|
|
|
"DEL" "\0"
|
|
|
|
"UNSYNC" "\0"
|
|
|
|
"FREQHOLD" "\0"
|
|
|
|
"PPSSIGNAL" "\0"
|
|
|
|
"PPSJITTER" "\0"
|
|
|
|
"PPSWANDER" "\0"
|
|
|
|
"PPSERROR" "\0"
|
|
|
|
"CLOCKERR"
|
|
|
|
;
|
2001-03-21 00:48:10 +05:30
|
|
|
|
2007-11-04 09:40:17 +05:30
|
|
|
static const char ret_code_descript[] =
|
|
|
|
"clock synchronized" "\0"
|
|
|
|
"insert leap second" "\0"
|
|
|
|
"delete leap second" "\0"
|
|
|
|
"leap second in progress" "\0"
|
|
|
|
"leap second has occurred" "\0"
|
2007-08-13 02:28:27 +05:30
|
|
|
"clock not synchronized"
|
2007-11-04 09:40:17 +05:30
|
|
|
;
|
2001-03-21 00:48:10 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int adjtimex_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2006-05-28 03:38:01 +05:30
|
|
|
int adjtimex_main(int argc, char **argv)
|
2001-03-21 00:48:10 +05:30
|
|
|
{
|
2006-09-22 14:17:54 +05:30
|
|
|
enum {
|
|
|
|
OPT_quiet = 0x1
|
|
|
|
};
|
2006-10-04 02:30:06 +05:30
|
|
|
unsigned opt;
|
2006-09-22 14:17:54 +05:30
|
|
|
char *opt_o, *opt_f, *opt_p, *opt_t;
|
2001-03-21 00:48:10 +05:30
|
|
|
struct timex txc;
|
2007-11-04 09:40:17 +05:30
|
|
|
int i, ret;
|
2005-10-20 16:47:48 +05:30
|
|
|
const char *descript;
|
2001-03-21 00:48:10 +05:30
|
|
|
txc.modes=0;
|
2006-09-22 14:17:54 +05:30
|
|
|
|
2007-08-18 21:02:12 +05:30
|
|
|
opt = getopt32(argv, "qo:f:p:t:",
|
2006-09-22 14:17:54 +05:30
|
|
|
&opt_o, &opt_f, &opt_p, &opt_t);
|
|
|
|
//if (opt & 0x1) // -q
|
|
|
|
if (opt & 0x2) { // -o
|
2007-03-15 04:30:26 +05:30
|
|
|
txc.offset = xatol(opt_o);
|
2006-09-22 14:17:54 +05:30
|
|
|
txc.modes |= ADJ_OFFSET_SINGLESHOT;
|
|
|
|
}
|
|
|
|
if (opt & 0x4) { // -f
|
2007-03-15 04:30:26 +05:30
|
|
|
txc.freq = xatol(opt_f);
|
2006-09-22 14:17:54 +05:30
|
|
|
txc.modes |= ADJ_FREQUENCY;
|
|
|
|
}
|
|
|
|
if (opt & 0x8) { // -p
|
2007-03-15 04:30:26 +05:30
|
|
|
txc.constant = xatol(opt_p);
|
2006-09-22 14:17:54 +05:30
|
|
|
txc.modes |= ADJ_TIMECONST;
|
|
|
|
}
|
|
|
|
if (opt & 0x10) { // -t
|
2007-03-15 04:30:26 +05:30
|
|
|
txc.tick = xatol(opt_t);
|
2006-09-22 14:17:54 +05:30
|
|
|
txc.modes |= ADJ_TICK;
|
2001-03-21 00:48:10 +05:30
|
|
|
}
|
|
|
|
if (argc != optind) { /* no valid non-option parameters */
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_show_usage();
|
2001-03-21 00:48:10 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
ret = adjtimex(&txc);
|
|
|
|
|
2007-11-04 09:40:17 +05:30
|
|
|
if (ret < 0) {
|
|
|
|
bb_perror_nomsg_and_die();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(opt & OPT_quiet)) {
|
|
|
|
int sep;
|
|
|
|
const char *name;
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2001-03-21 00:48:10 +05:30
|
|
|
printf(
|
|
|
|
" mode: %d\n"
|
|
|
|
"-o offset: %ld\n"
|
|
|
|
"-f frequency: %ld\n"
|
|
|
|
" maxerror: %ld\n"
|
|
|
|
" esterror: %ld\n"
|
2007-11-04 09:40:17 +05:30
|
|
|
" status: %d (",
|
2001-03-21 00:48:10 +05:30
|
|
|
txc.modes, txc.offset, txc.freq, txc.maxerror,
|
|
|
|
txc.esterror, txc.status);
|
|
|
|
|
|
|
|
/* representative output of next code fragment:
|
|
|
|
"PLL | PPSTIME" */
|
2007-11-04 09:40:17 +05:30
|
|
|
name = statlist_name;
|
|
|
|
sep = 0;
|
|
|
|
for (i = 0; statlist_bit[i]; i++) {
|
|
|
|
if (txc.status & statlist_bit[i]) {
|
|
|
|
if (sep)
|
|
|
|
fputs(" | ", stdout);
|
|
|
|
fputs(name, stdout);
|
|
|
|
sep = 1;
|
2001-03-21 00:48:10 +05:30
|
|
|
}
|
2007-11-04 09:40:17 +05:30
|
|
|
name += strlen(name) + 1;
|
2001-03-21 00:48:10 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
descript = "error";
|
2007-11-04 09:40:17 +05:30
|
|
|
if (ret <= 5)
|
|
|
|
descript = nth_string(ret_code_descript, ret);
|
|
|
|
printf(")\n"
|
2001-03-21 00:48:10 +05:30
|
|
|
"-p timeconstant: %ld\n"
|
|
|
|
" precision: %ld\n"
|
|
|
|
" tolerance: %ld\n"
|
|
|
|
"-t tick: %ld\n"
|
|
|
|
" time.tv_sec: %ld\n"
|
|
|
|
" time.tv_usec: %ld\n"
|
|
|
|
" return value: %d (%s)\n",
|
|
|
|
txc.constant,
|
|
|
|
txc.precision, txc.tolerance, txc.tick,
|
2001-04-05 08:44:39 +05:30
|
|
|
(long)txc.time.tv_sec, (long)txc.time.tv_usec, ret, descript);
|
2001-03-21 00:48:10 +05:30
|
|
|
}
|
2007-11-04 09:40:17 +05:30
|
|
|
|
|
|
|
return 0;
|
2001-03-21 00:48:10 +05:30
|
|
|
}
|