]>
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
[] =
28 "@(#) $Header: /tcpdump/master/tcpdump/print-ntp.c,v 1.34 2002-08-01 08:53:21 risso Exp $ (LBL)";
35 #include <tcpdump-stdinc.h>
40 #include "interface.h"
41 #include "addrtoname.h"
43 #undef MODEMASK /* Solaris sucks */
47 static void p_sfix(const struct s_fixedpt
*);
48 static void p_ntp_time(const struct l_fixedpt
*);
49 static void p_ntp_delta(const struct l_fixedpt
*, const struct l_fixedpt
*);
55 ntp_print(register const u_char
*cp
, u_int length
)
57 register const struct ntpdata
*bp
;
58 int mode
, version
, leapind
;
60 bp
= (struct ntpdata
*)cp
;
61 /* Note funny sized packets */
62 if (length
!= sizeof(struct ntpdata
))
63 (void)printf(" [len=%d]", length
);
67 version
= (int)(bp
->status
& VERSIONMASK
) >> 3;
68 printf(" v%d", version
);
70 leapind
= bp
->status
& LEAPMASK
;
77 fputs(" +1s", stdout
);
81 fputs(" -1s", stdout
);
85 mode
= bp
->status
& MODEMASK
;
88 case MODE_UNSPEC
: /* unspecified */
89 fputs(" unspec", stdout
);
92 case MODE_SYM_ACT
: /* symmetric active */
93 fputs(" sym_act", stdout
);
96 case MODE_SYM_PAS
: /* symmetric passive */
97 fputs(" sym_pas", stdout
);
100 case MODE_CLIENT
: /* client */
101 fputs(" client", stdout
);
104 case MODE_SERVER
: /* server */
105 fputs(" server", stdout
);
108 case MODE_BROADCAST
: /* broadcast */
109 fputs(" bcast", stdout
);
112 case MODE_RES1
: /* reserved */
113 fputs(" res1", stdout
);
116 case MODE_RES2
: /* reserved */
117 fputs(" res2", stdout
);
123 printf(" strat %d", bp
->stratum
);
126 printf(" poll %d", bp
->ppoll
);
128 /* Can't TCHECK bp->precision bitfield so bp->distance + 0 instead */
129 TCHECK2(bp
->distance
, 0);
130 printf(" prec %d", bp
->precision
);
135 TCHECK(bp
->distance
);
136 fputs(" dist ", stdout
);
137 p_sfix(&bp
->distance
);
139 TCHECK(bp
->dispersion
);
140 fputs(" disp ", stdout
);
141 p_sfix(&bp
->dispersion
);
144 fputs(" ref ", stdout
);
145 /* Interpretation depends on stratum */
146 switch (bp
->stratum
) {
153 fn_printn((u_char
*)&(bp
->refid
), 4, NULL
);
157 printf("%s INFO_QUERY", ipaddr_string(&(bp
->refid
)));
158 /* this doesn't have more content */
162 printf("%s INFO_REPLY", ipaddr_string(&(bp
->refid
)));
163 /* this is too complex to be worth printing */
167 printf("%s", ipaddr_string(&(bp
->refid
)));
173 p_ntp_time(&(bp
->reftime
));
176 fputs(" orig ", stdout
);
177 p_ntp_time(&(bp
->org
));
180 fputs(" rec ", stdout
);
181 p_ntp_delta(&(bp
->org
), &(bp
->rec
));
184 fputs(" xmt ", stdout
);
185 p_ntp_delta(&(bp
->org
), &(bp
->xmt
));
190 fputs(" [|ntp]", stdout
);
194 p_sfix(register const struct s_fixedpt
*sfp
)
200 i
= ntohs(sfp
->int_part
);
201 f
= ntohs(sfp
->fraction
);
202 ff
= f
/ 65536.0; /* shift radix point by 16 bits */
203 f
= ff
* 1000000.0; /* Treat fraction as parts per million */
204 printf("%d.%06d", i
, f
);
207 #define FMAXINT (4294967296.0) /* floating point rep. of MAXINT */
210 p_ntp_time(register const struct l_fixedpt
*lfp
)
213 register u_int32_t uf
;
214 register u_int32_t f
;
217 i
= ntohl(lfp
->int_part
);
218 uf
= ntohl(lfp
->fraction
);
220 if (ff
< 0.0) /* some compilers are buggy */
222 ff
= ff
/ FMAXINT
; /* shift radix point by 32 bits */
223 f
= ff
* 1000000000.0; /* treat fraction as parts per billion */
224 printf("%u.%09d", i
, f
);
227 /* Prints time difference between *lfp and *olfp */
229 p_ntp_delta(register const struct l_fixedpt
*olfp
,
230 register const struct l_fixedpt
*lfp
)
233 register u_int32_t uf
;
234 register u_int32_t ouf
;
235 register u_int32_t f
;
239 i
= ntohl(lfp
->int_part
) - ntohl(olfp
->int_part
);
241 uf
= ntohl(lfp
->fraction
);
242 ouf
= ntohl(olfp
->fraction
);
244 if (i
> 0) { /* new is definitely greater than old */
247 if (ouf
> uf
) /* must borrow from high-order bits */
249 } else if (i
< 0) { /* new is definitely less than old */
252 if (uf
> ouf
) /* must carry into the high-order bits */
255 } else { /* int_part is zero */
266 if (ff
< 0.0) /* some compilers are buggy */
268 ff
= ff
/ FMAXINT
; /* shift radix point by 32 bits */
269 f
= ff
* 1000000000.0; /* treat fraction as parts per billion */
274 printf("%d.%09d", i
, f
);