blob: 985ee2d0ce3c38e68547ef6953c3eb923a1f07f9 [file] [log] [blame]
Bernhard Reutner-Fischerc89982d2006-06-03 19:49:21 +00001/* vi: set sw=4 ts=4: */
Mark Whitley6f932772001-03-20 19:18:10 +00002/*
3 * adjtimex.c - read, and possibly modify, the Linux kernel `timex' variables.
4 *
5 * Originally written: October 1997
6 * Last hack: March 2001
7 * Copyright 1997, 2000, 2001 Larry Doolittle <LRDoolittle@lbl.gov>
8 *
Mark Whitley6f932772001-03-20 19:18:10 +00009 * busyboxed 20 March 2001, Larry Doolittle <ldoolitt@recycle.lbl.gov>
Bernhard Reutner-Fischerc89982d2006-06-03 19:49:21 +000010 *
Rob Landley8fba99f2006-05-27 22:08:01 +000011 * Licensed under GPLv2 or later, see file License in this tarball for details.
Mark Whitley6f932772001-03-20 19:18:10 +000012 */
13
Bernhard Reutner-Fischerc89982d2006-06-03 19:49:21 +000014#include "busybox.h"
Mark Whitley6f932772001-03-20 19:18:10 +000015#include <sys/timex.h>
Mark Whitley6f932772001-03-20 19:18:10 +000016
"Vladimir N. Oleynik"1f0262b2005-10-20 11:17:48 +000017static const struct {int bit; const char *name;} statlist[] = {
Mark Whitley6f932772001-03-20 19:18:10 +000018 { STA_PLL, "PLL" },
19 { STA_PPSFREQ, "PPSFREQ" },
20 { STA_PPSTIME, "PPSTIME" },
21 { STA_FLL, "FFL" },
22 { STA_INS, "INS" },
23 { STA_DEL, "DEL" },
24 { STA_UNSYNC, "UNSYNC" },
25 { STA_FREQHOLD, "FREQHOLD" },
26 { STA_PPSSIGNAL, "PPSSIGNAL" },
27 { STA_PPSJITTER, "PPSJITTER" },
28 { STA_PPSWANDER, "PPSWANDER" },
29 { STA_PPSERROR, "PPSERROR" },
30 { STA_CLOCKERR, "CLOCKERR" },
31 { 0, NULL } };
32
"Vladimir N. Oleynik"1f0262b2005-10-20 11:17:48 +000033static const char * const ret_code_descript[] = {
Mark Whitley6f932772001-03-20 19:18:10 +000034 "clock synchronized",
35 "insert leap second",
36 "delete leap second",
37 "leap second in progress",
38 "leap second has occurred",
39 "clock not synchronized" };
40
Denis Vlasenko06af2162007-02-03 17:28:39 +000041int adjtimex_main(int argc, char **argv);
Rob Landley8fba99f2006-05-27 22:08:01 +000042int adjtimex_main(int argc, char **argv)
Mark Whitley6f932772001-03-20 19:18:10 +000043{
Denis Vlasenko109d21f2006-09-22 08:47:54 +000044 enum {
45 OPT_quiet = 0x1
46 };
Denis Vlasenko67b23e62006-10-03 21:00:06 +000047 unsigned opt;
Denis Vlasenko109d21f2006-09-22 08:47:54 +000048 char *opt_o, *opt_f, *opt_p, *opt_t;
Mark Whitley6f932772001-03-20 19:18:10 +000049 struct timex txc;
Denis Vlasenko109d21f2006-09-22 08:47:54 +000050 int i, ret, sep;
"Vladimir N. Oleynik"1f0262b2005-10-20 11:17:48 +000051 const char *descript;
Mark Whitley6f932772001-03-20 19:18:10 +000052 txc.modes=0;
Denis Vlasenko109d21f2006-09-22 08:47:54 +000053
Denis Vlasenko67b23e62006-10-03 21:00:06 +000054 opt = getopt32(argc, argv, "qo:f:p:t:",
Denis Vlasenko109d21f2006-09-22 08:47:54 +000055 &opt_o, &opt_f, &opt_p, &opt_t);
56 //if (opt & 0x1) // -q
57 if (opt & 0x2) { // -o
Denis Vlasenko13858992006-10-08 12:49:22 +000058 txc.offset = xatoi(opt_o);
Denis Vlasenko109d21f2006-09-22 08:47:54 +000059 txc.modes |= ADJ_OFFSET_SINGLESHOT;
60 }
61 if (opt & 0x4) { // -f
Denis Vlasenko13858992006-10-08 12:49:22 +000062 txc.freq = xatou(opt_f);
Denis Vlasenko109d21f2006-09-22 08:47:54 +000063 txc.modes |= ADJ_FREQUENCY;
64 }
65 if (opt & 0x8) { // -p
Denis Vlasenko13858992006-10-08 12:49:22 +000066 txc.constant = xatoi(opt_p);
Denis Vlasenko109d21f2006-09-22 08:47:54 +000067 txc.modes |= ADJ_TIMECONST;
68 }
69 if (opt & 0x10) { // -t
Denis Vlasenko13858992006-10-08 12:49:22 +000070 txc.tick = xatoi(opt_t);
Denis Vlasenko109d21f2006-09-22 08:47:54 +000071 txc.modes |= ADJ_TICK;
Mark Whitley6f932772001-03-20 19:18:10 +000072 }
73 if (argc != optind) { /* no valid non-option parameters */
Manuel Novoa III cad53642003-03-19 09:13:01 +000074 bb_show_usage();
Mark Whitley6f932772001-03-20 19:18:10 +000075 }
76
77 ret = adjtimex(&txc);
78
79 if (ret < 0) perror("adjtimex");
Eric Andersenc7bda1c2004-03-15 08:29:22 +000080
Denis Vlasenko109d21f2006-09-22 08:47:54 +000081 if (!(opt & OPT_quiet) && ret>=0) {
Mark Whitley6f932772001-03-20 19:18:10 +000082 printf(
83 " mode: %d\n"
84 "-o offset: %ld\n"
85 "-f frequency: %ld\n"
86 " maxerror: %ld\n"
87 " esterror: %ld\n"
88 " status: %d ( ",
89 txc.modes, txc.offset, txc.freq, txc.maxerror,
90 txc.esterror, txc.status);
91
92 /* representative output of next code fragment:
93 "PLL | PPSTIME" */
94 sep=0;
95 for (i=0; statlist[i].name; i++) {
96 if (txc.status & statlist[i].bit) {
97 if (sep) fputs(" | ",stdout);
98 fputs(statlist[i].name,stdout);
99 sep=1;
100 }
101 }
102
103 descript = "error";
104 if (ret >= 0 && ret <= 5) descript = ret_code_descript[ret];
105 printf(" )\n"
106 "-p timeconstant: %ld\n"
107 " precision: %ld\n"
108 " tolerance: %ld\n"
109 "-t tick: %ld\n"
110 " time.tv_sec: %ld\n"
111 " time.tv_usec: %ld\n"
112 " return value: %d (%s)\n",
113 txc.constant,
114 txc.precision, txc.tolerance, txc.tick,
Eric Andersene76c3b02001-04-05 03:14:39 +0000115 (long)txc.time.tv_sec, (long)txc.time.tv_usec, ret, descript);
Mark Whitley6f932772001-03-20 19:18:10 +0000116 }
117 return (ret<0);
118}