getopt_ulflags -> getopt32.
[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 "busybox.h"
15 #include <stdio.h>
16 #include <sys/types.h>
17 #include <stdlib.h>
18 #include <unistd.h>
19 #include <sys/timex.h>
20
21 static const struct {int bit; const char *name;} statlist[] = {
22         { STA_PLL,       "PLL"       },
23         { STA_PPSFREQ,   "PPSFREQ"   },
24         { STA_PPSTIME,   "PPSTIME"   },
25         { STA_FLL,       "FFL"       },
26         { STA_INS,       "INS"       },
27         { STA_DEL,       "DEL"       },
28         { STA_UNSYNC,    "UNSYNC"    },
29         { STA_FREQHOLD,  "FREQHOLD"  },
30         { STA_PPSSIGNAL, "PPSSIGNAL" },
31         { STA_PPSJITTER, "PPSJITTER" },
32         { STA_PPSWANDER, "PPSWANDER" },
33         { STA_PPSERROR,  "PPSERROR"  },
34         { STA_CLOCKERR,  "CLOCKERR"  },
35         { 0, NULL } };
36
37 static const char * const ret_code_descript[] = {
38         "clock synchronized",
39         "insert leap second",
40         "delete leap second",
41         "leap second in progress",
42         "leap second has occurred",
43         "clock not synchronized" };
44
45 int adjtimex_main(int argc, char **argv)
46 {
47         enum {
48                 OPT_quiet = 0x1
49         };
50         unsigned opt;
51         char *opt_o, *opt_f, *opt_p, *opt_t;
52         struct timex txc;
53         int i, ret, sep;
54         const char *descript;
55         txc.modes=0;
56
57         opt = getopt32(argc, argv, "qo:f:p:t:",
58                         &opt_o, &opt_f, &opt_p, &opt_t);
59         //if (opt & 0x1) // -q
60         if (opt & 0x2) { // -o
61                 txc.offset = atoi(opt_o);
62                 txc.modes |= ADJ_OFFSET_SINGLESHOT;
63         }
64         if (opt & 0x4) { // -f
65                 txc.freq = atoi(opt_f);
66                 txc.modes |= ADJ_FREQUENCY;
67         }
68         if (opt & 0x8) { // -p
69                 txc.constant = atoi(opt_p);
70                 txc.modes |= ADJ_TIMECONST;
71         }
72         if (opt & 0x10) { // -t
73                 txc.tick = atoi(opt_t);
74                 txc.modes |= ADJ_TICK;
75         }
76         if (argc != optind) { /* no valid non-option parameters */
77                 bb_show_usage();
78         }
79
80         ret = adjtimex(&txc);
81
82         if (ret < 0) perror("adjtimex");
83
84         if (!(opt & OPT_quiet) && ret>=0) {
85                 printf(
86                         "    mode:         %d\n"
87                         "-o  offset:       %ld\n"
88                         "-f  frequency:    %ld\n"
89                         "    maxerror:     %ld\n"
90                         "    esterror:     %ld\n"
91                         "    status:       %d ( ",
92                 txc.modes, txc.offset, txc.freq, txc.maxerror,
93                 txc.esterror, txc.status);
94
95                 /* representative output of next code fragment:
96                    "PLL | PPSTIME" */
97                 sep=0;
98                 for (i=0; statlist[i].name; i++) {
99                         if (txc.status & statlist[i].bit) {
100                                 if (sep) fputs(" | ",stdout);
101                                 fputs(statlist[i].name,stdout);
102                                 sep=1;
103                         }
104                 }
105
106                 descript = "error";
107                 if (ret >= 0 && ret <= 5) descript = ret_code_descript[ret];
108                 printf(" )\n"
109                         "-p  timeconstant: %ld\n"
110                         "    precision:    %ld\n"
111                         "    tolerance:    %ld\n"
112                         "-t  tick:         %ld\n"
113                         "    time.tv_sec:  %ld\n"
114                         "    time.tv_usec: %ld\n"
115                         "    return value: %d (%s)\n",
116                 txc.constant,
117                 txc.precision, txc.tolerance, txc.tick,
118                 (long)txc.time.tv_sec, (long)txc.time.tv_usec, ret, descript);
119         }
120         return (ret<0);
121 }