9f8227cf0b6a7a79727e9932ff81b6b3492ac55a
[platform/upstream/busybox.git] / miscutils / adjtimex.c
1 /* vi: set sw=4 ts=4: */
2 /*
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  *
9  * busyboxed 20 March 2001, Larry Doolittle <ldoolitt@recycle.lbl.gov>
10  *
11  * Licensed under GPLv2 or later, see file License in this tarball for details.
12  */
13
14 #include "libbb.h"
15 #include <sys/timex.h>
16
17 static const struct {int bit; const char *name;} statlist[] = {
18         { 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
33 static const char * const ret_code_descript[] = {
34         "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
41 int adjtimex_main(int argc, char **argv);
42 int adjtimex_main(int argc, char **argv)
43 {
44         enum {
45                 OPT_quiet = 0x1
46         };
47         unsigned opt;
48         char *opt_o, *opt_f, *opt_p, *opt_t;
49         struct timex txc;
50         int i, ret, sep;
51         const char *descript;
52         txc.modes=0;
53
54         opt = getopt32(argc, argv, "qo:f:p:t:",
55                         &opt_o, &opt_f, &opt_p, &opt_t);
56         //if (opt & 0x1) // -q
57         if (opt & 0x2) { // -o
58                 txc.offset = xatol(opt_o);
59                 txc.modes |= ADJ_OFFSET_SINGLESHOT;
60         }
61         if (opt & 0x4) { // -f
62                 txc.freq = xatol(opt_f);
63                 txc.modes |= ADJ_FREQUENCY;
64         }
65         if (opt & 0x8) { // -p
66                 txc.constant = xatol(opt_p);
67                 txc.modes |= ADJ_TIMECONST;
68         }
69         if (opt & 0x10) { // -t
70                 txc.tick = xatol(opt_t);
71                 txc.modes |= ADJ_TICK;
72         }
73         if (argc != optind) { /* no valid non-option parameters */
74                 bb_show_usage();
75         }
76
77         ret = adjtimex(&txc);
78
79         if (ret < 0) perror("adjtimex");
80
81         if (!(opt & OPT_quiet) && ret>=0) {
82                 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,
115                 (long)txc.time.tv_sec, (long)txc.time.tv_usec, ret, descript);
116         }
117         return (ret<0);
118 }