]>
The Tcpdump Group git mirrors - tcpdump/blob - print-ntp.c
2 * Copyright (c) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that: (1) source code distributions
7 * retain the above copyright notice and this paragraph in its entirety, (2)
8 * distributions including binary code include the above copyright notice and
9 * this paragraph in its entirety in the documentation or other materials
10 * provided with the distribution, and (3) all advertising materials mentioning
11 * features or use of this software display the following acknowledgement:
12 * ``This product includes software developed by the University of California,
13 * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
14 * the University nor the names of its contributors may be used to endorse
15 * or promote products derived from this software without specific prior
17 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
18 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
19 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
21 * Format and print ntp packets.
22 * By Jeffrey Mogul/DECWRL
23 * loosely based on print-bootp.c
27 static const char rcsid
[] _U_
=
28 "@(#) $Header: /tcpdump/master/tcpdump/print-ntp.c,v 1.43 2007-11-30 13:45:10 hannes Exp $ (LBL)";
35 #include <tcpdump-stdinc.h>
43 #include "interface.h"
44 #include "addrtoname.h"
47 #undef MODEMASK /* Solaris sucks */
51 static void p_sfix(const struct s_fixedpt
*);
52 static void p_ntp_time(const struct l_fixedpt
*);
53 static void p_ntp_delta(const struct l_fixedpt
*, const struct l_fixedpt
*);
55 static struct tok ntp_mode_values
[] = {
56 { MODE_UNSPEC
, "unspecified" },
57 { MODE_SYM_ACT
, "symmetric active" },
58 { MODE_SYM_PAS
, "symmetric passive" },
59 { MODE_CLIENT
, "Client" },
60 { MODE_SERVER
, "Server" },
61 { MODE_BROADCAST
, "Broadcast" },
62 { MODE_RES1
, "Reserved" },
63 { MODE_RES2
, "Reserved" },
67 static struct tok ntp_leapind_values
[] = {
71 { ALARM
, "clock unsynchronized" },
75 static struct tok ntp_stratum_values
[] = {
76 { UNSPECIFIED
, "unspecified" },
77 { PRIM_REF
, "primary reference" },
85 ntp_print(register const u_char
*cp
, u_int length
)
87 register const struct ntpdata
*bp
;
88 int mode
, version
, leapind
;
90 bp
= (struct ntpdata
*)cp
;
94 version
= (int)(bp
->status
& VERSIONMASK
) >> 3;
95 printf("NTPv%d", version
);
97 mode
= bp
->status
& MODEMASK
;
99 printf (", %s, length %u",
100 tok2str(ntp_mode_values
, "Unknown mode", mode
),
105 printf (", length %u\n\t%s",
107 tok2str(ntp_mode_values
, "Unknown mode", mode
));
109 leapind
= bp
->status
& LEAPMASK
;
110 printf (", Leap indicator: %s (%u)",
111 tok2str(ntp_leapind_values
, "Unknown", leapind
),
115 printf(", Stratum %u (%s)",
117 tok2str(ntp_stratum_values
, (bp
->stratum
>=2 && bp
->stratum
<=15) ? "secondary reference" : "reserved", bp
->stratum
));
120 printf(", poll %u (%us)", bp
->ppoll
, 1 << bp
->ppoll
);
122 /* Can't TCHECK bp->precision bitfield so bp->distance + 0 instead */
123 TCHECK2(bp
->root_delay
, 0);
124 printf(", precision %d", bp
->precision
);
126 TCHECK(bp
->root_delay
);
127 fputs("\n\tRoot Delay: ", stdout
);
128 p_sfix(&bp
->root_delay
);
130 TCHECK(bp
->root_dispersion
);
131 fputs(", Root dispersion: ", stdout
);
132 p_sfix(&bp
->root_dispersion
);
135 fputs(", Reference-ID: ", stdout
);
136 /* Interpretation depends on stratum */
137 switch (bp
->stratum
) {
144 if (fn_printn((u_char
*)&(bp
->refid
), 4, snapend
))
149 printf("%s INFO_QUERY", ipaddr_string(&(bp
->refid
)));
150 /* this doesn't have more content */
154 printf("%s INFO_REPLY", ipaddr_string(&(bp
->refid
)));
155 /* this is too complex to be worth printing */
159 printf("%s", ipaddr_string(&(bp
->refid
)));
163 TCHECK(bp
->ref_timestamp
);
164 fputs("\n\t Reference Timestamp: ", stdout
);
165 p_ntp_time(&(bp
->ref_timestamp
));
167 TCHECK(bp
->org_timestamp
);
168 fputs("\n\t Originator Timestamp: ", stdout
);
169 p_ntp_time(&(bp
->org_timestamp
));
171 TCHECK(bp
->rec_timestamp
);
172 fputs("\n\t Receive Timestamp: ", stdout
);
173 p_ntp_time(&(bp
->rec_timestamp
));
175 TCHECK(bp
->xmt_timestamp
);
176 fputs("\n\t Transmit Timestamp: ", stdout
);
177 p_ntp_time(&(bp
->xmt_timestamp
));
179 fputs("\n\t Originator - Receive Timestamp: ", stdout
);
180 p_ntp_delta(&(bp
->org_timestamp
), &(bp
->rec_timestamp
));
182 fputs("\n\t Originator - Transmit Timestamp: ", stdout
);
183 p_ntp_delta(&(bp
->org_timestamp
), &(bp
->xmt_timestamp
));
185 if ( (sizeof(struct ntpdata
) - length
) == 16) { /* Optional: key-id */
187 printf("\n\tKey id: %u", bp
->key_id
);
188 } else if ( (sizeof(struct ntpdata
) - length
) == 0) { /* Optional: key-id + authentication */
190 printf("\n\tKey id: %u", bp
->key_id
);
191 TCHECK2(bp
->message_digest
, sizeof (bp
->message_digest
));
192 printf("\n\tAuthentication: %08x%08x%08x%08x",
193 EXTRACT_32BITS(bp
->message_digest
),
194 EXTRACT_32BITS(bp
->message_digest
+ 4),
195 EXTRACT_32BITS(bp
->message_digest
+ 8),
196 EXTRACT_32BITS(bp
->message_digest
+ 12));
201 fputs(" [|ntp]", stdout
);
205 p_sfix(register const struct s_fixedpt
*sfp
)
211 i
= EXTRACT_16BITS(&sfp
->int_part
);
212 f
= EXTRACT_16BITS(&sfp
->fraction
);
213 ff
= f
/ 65536.0; /* shift radix point by 16 bits */
214 f
= ff
* 1000000.0; /* Treat fraction as parts per million */
215 printf("%d.%06d", i
, f
);
218 #define FMAXINT (4294967296.0) /* floating point rep. of MAXINT */
221 p_ntp_time(register const struct l_fixedpt
*lfp
)
224 register u_int32_t uf
;
225 register u_int32_t f
;
228 i
= EXTRACT_32BITS(&lfp
->int_part
);
229 uf
= EXTRACT_32BITS(&lfp
->fraction
);
231 if (ff
< 0.0) /* some compilers are buggy */
233 ff
= ff
/ FMAXINT
; /* shift radix point by 32 bits */
234 f
= ff
* 1000000000.0; /* treat fraction as parts per billion */
235 printf("%u.%09d", i
, f
);
239 * print the time in human-readable format.
242 time_t seconds
= i
- JAN_1970
;
246 tm
= localtime(&seconds
);
247 strftime(time_buf
, sizeof (time_buf
), "%Y/%m/%d %H:%M:%S", tm
);
248 printf (" (%s)", time_buf
);
253 /* Prints time difference between *lfp and *olfp */
255 p_ntp_delta(register const struct l_fixedpt
*olfp
,
256 register const struct l_fixedpt
*lfp
)
259 register u_int32_t u
, uf
;
260 register u_int32_t ou
, ouf
;
261 register u_int32_t f
;
265 u
= EXTRACT_32BITS(&lfp
->int_part
);
266 ou
= EXTRACT_32BITS(&olfp
->int_part
);
267 uf
= EXTRACT_32BITS(&lfp
->fraction
);
268 ouf
= EXTRACT_32BITS(&olfp
->fraction
);
269 if (ou
== 0 && ouf
== 0) {
276 if (i
> 0) { /* new is definitely greater than old */
279 if (ouf
> uf
) /* must borrow from high-order bits */
281 } else if (i
< 0) { /* new is definitely less than old */
284 if (uf
> ouf
) /* must carry into the high-order bits */
287 } else { /* int_part is zero */
298 if (ff
< 0.0) /* some compilers are buggy */
300 ff
= ff
/ FMAXINT
; /* shift radix point by 32 bits */
301 f
= ff
* 1000000000.0; /* treat fraction as parts per billion */
306 printf("%d.%09d", i
, f
);