From 4ac0a757a173da5acd6fad0054db1a327e8d815f Mon Sep 17 00:00:00 2001 From: octo Date: Wed, 31 May 2006 14:06:09 +0000 Subject: [PATCH] ntpd branch: Removed the headerfiles that were copied from the NTPd distribution: They are not used (anymore). --- src/ntp_machine.h | 596 ------------------------------- src/ntp_request.h | 884 ---------------------------------------------- src/ntp_types.h | 80 ----- 3 files changed, 1560 deletions(-) delete mode 100644 src/ntp_machine.h delete mode 100644 src/ntp_request.h delete mode 100644 src/ntp_types.h diff --git a/src/ntp_machine.h b/src/ntp_machine.h deleted file mode 100644 index 65ef5be8..00000000 --- a/src/ntp_machine.h +++ /dev/null @@ -1,596 +0,0 @@ -/* - * Collect all machine dependent idiosyncrasies in one place. - */ - -#ifndef __ntp_machine -#define __ntp_machine - -#ifdef HAVE_CONFIG_H -# include -#endif - -#ifdef TIME_WITH_SYS_TIME -# include -# include -#else -# ifdef HAVE_SYS_TIME_H -# include -# else -# include -# endif -#endif - -#include "ntp_proto.h" - -/* - - HEY! CHECK THIS OUT! - - The first half of this file is obsolete, and is only there to help - reconcile "what went before" with "current behavior". - - The per-system SYS_* #defins ARE NO LONGER USED, with the temporary - exception of SYS_WINNT. - - If you find a hunk of code that is bracketed by a SYS_* macro and you - *know* that it is still needed, please let us know. In many cases the - code fragment is now handled somewhere else by autoconf choices. - -*/ - -/* - -INFO ON NEW KERNEL PLL SYS CALLS - - NTP_SYSCALLS_STD - use the "normal" ones - NTP_SYSCALL_GET - SYS_ntp_gettime id - NTP_SYSCALL_ADJ - SYS_ntp_adjtime id - NTP_SYSCALLS_LIBC - ntp_adjtime() and ntp_gettime() are in libc. - -HOW TO GET IP INTERFACE INFORMATION - - Some UNIX V.4 machines implement a sockets library on top of - streams. For these systems, you must use send the SIOCGIFCONF down - the stream in an I_STR ioctl. This ususally also implies - USE_STREAMS_DEVICE FOR IF_CONFIG. Dell UNIX is a notable exception. - - STREAMS_TLI - use ioctl(I_STR) to implement ioctl(SIOCGIFCONF) - -WHAT DOES IOCTL(SIOCGIFCONF) RETURN IN THE BUFFER - - UNIX V.4 machines implement a sockets library on top of streams. - When requesting the IP interface configuration with an ioctl(2) calll, - an array of ifreq structures are placed in the provided buffer. Some - implementations also place the length of the buffer information in - the first integer position of the buffer. - - SIZE_RETURNED_IN_BUFFER - size integer is in the buffer - -WILL IOCTL(SIOCGIFCONF) WORK ON A SOCKET - - Some UNIX V.4 machines do not appear to support ioctl() requests for the - IP interface configuration on a socket. They appear to require the use - of the streams device instead. - - USE_STREAMS_DEVICE_FOR_IF_CONFIG - use the /dev/ip device for configuration - -MISC - - HAVE_PROTOTYPES - Prototype functions - DOSYNCTODR - Resync TODR clock every hour. - RETSIGTYPE - Define signal function type. - NO_SIGNED_CHAR_DECL - No "signed char" see include/ntp.h - LOCK_PROCESS - Have plock. - UDP_WILDCARD_DELIVERY - - these systems deliver broadcast packets to the wildcard - port instead to a port bound to the interface bound - to the correct broadcast address - are these - implementations broken or did the spec change ? -*/ - -/* - * Set up for prototyping (duplicated from ntp_types.h) - */ -#ifndef P -#if defined(__STDC__) || defined(HAVE_PROTOTYPES) -#define P(x) x -#else /* not __STDC__ and not HAVE_PROTOTYPES */ -#define P(x) () -#endif /* not __STDC__ and not HAVE_PROTOTYPES */ -#endif /* P */ - -#if 0 - -/* - * IRIX 4.X and IRIX 5.x - */ -#if defined(SYS_IRIX4)||defined(SYS_IRIX5) -# define ADJTIME_IS_ACCURATE -# define LOCK_PROCESS -#endif - -/* - * Ultrix - * Note: posix version has NTP_POSIX_SOURCE and HAVE_SIGNALED_IO - */ -#if defined(SYS_ULTRIX) -# define S_CHAR_DEFINED -# define NTP_SYSCALLS_STD -# define HAVE_MODEM_CONTROL -#endif - -/* - * AUX - */ -#if defined(SYS_AUX2) || defined(SYS_AUX3) -# define NO_SIGNED_CHAR_DECL -# define LOCK_PROCESS -# define NTP_POSIX_SOURCE -/* - * This requires that _POSIX_SOURCE be forced on the - * compiler command flag. We can't do it here since this - * file is included _after_ the system header files and we - * need to let _them_ know we're POSIX. We do this in - * compilers/aux3.gcc... - */ -# define LOG_NTP LOG_LOCAL1 -#endif - -/* - * HPUX - */ -#if defined(SYS_HPUX) -# define getdtablesize() sysconf(_SC_OPEN_MAX) -# define setlinebuf(f) setvbuf(f, NULL, _IOLBF, 0) -# define NO_SIGNED_CHAR_DECL -# define LOCK_PROCESS -#endif - -/* - * BSD/OS 2.0 and above - */ -#if defined(SYS_BSDI) -# define USE_FSETOWNCTTY /* this funny system demands a CTTY for FSETOWN */ -#endif - -/* - * FreeBSD 2.0 and above - */ -#ifdef SYS_FREEBSD -# define KERNEL_PLL -#endif - -/* - * Linux - */ -#if defined(SYS_LINUX) -# define ntp_adjtime __adjtimex -#endif - -/* - * PTX - */ -#if defined(SYS_PTX) -# define LOCK_PROCESS -struct timezone { int __0; }; /* unused placebo */ -/* - * no comment !@! - */ -typedef unsigned int u_int; -# ifndef _NETINET_IN_SYSTM_INCLUDED /* i am about to comment... */ -typedef unsigned char u_char; -typedef unsigned short u_short; -typedef unsigned long u_long; -# endif -#endif - -/* - * UNIX V.4 on and NCR 3000 - */ -#if defined(SYS_SVR4) -# define STREAM -# define LOCK_PROCESS -# define SIZE_RETURNED_IN_BUFFER -#endif - -/* - * (Univel/Novell) Unixware1 SVR4 on intel x86 processor - */ -#if defined(SYS_UNIXWARE1) -/* #define _POSIX_SOURCE */ -# define STREAM -# define STREAMS -# undef STEP_SLEW /* TWO step */ -# define LOCK_PROCESS -# define SIZE_RETURNED_IN_BUFFER -# include -# include -# include -#endif - -/* - * DomainOS - */ -#if defined(SYS_DOMAINOS) -# define NTP_SYSCALLS_STD -/* older versions of domain/os don't have class D */ -# ifndef IN_CLASSD -# define IN_CLASSD(i) (((long)(i) & 0xf0000000) == 0xe0000000) -# define IN_CLASSD_NET 0xf0000000 -# define IN_CLASSD_NSHIFT 28 -# define IN_CLASSD_HOST 0xfffffff -# define IN_MULTICAST(i) IN_CLASSD(i) -# endif -#endif - -/* - * Fujitsu UXP/V - */ -#if defined(SYS_UXPV) -# define LOCK_PROCESS -# define SIZE_RETURNED_IN_BUFFER -#endif - - -#endif /* 0 */ - -/* - * Define these here for non-Windows NT systems - * SOCKET and INVALID_SOCKET are native macros - * on Windows NT and since they have different - * requirements we use them in the code and - * make them macros for everyone else - */ -#ifndef SYS_WINNT -# define SOCKET int -# define INVALID_SOCKET -1 -# define closesocket close -#endif -/* - * Windows NT - */ -#if defined(SYS_WINNT) -# if !defined(HAVE_CONFIG_H) || !defined(__config) -# include -# endif /* HAVE_CONFIG_H) */ -# include -# include -# include - -# define ifreq _INTERFACE_INFO -# define ifr_flags iiFlags -# define ifr_addr iiAddress.AddressIn -# define ifr_broadaddr iiBroadcastAddress.AddressIn -# define ifr_mask iiNetmask.AddressIn -# define zz_family sin_family - -# define S_IFREG _S_IFREG -# define stat _stat -# define isascii __isascii -# define isatty _isatty -# define mktemp _mktemp -# define unlink _unlink -# define fileno _fileno -# define write _write -# define vsnprintf _vsnprintf -# define snprintf _snprintf -#ifndef close -# define close _close -#endif -# undef interface -# include -#define getpid _getpid -/* - * Defining registers are not a good idea on Windows - * This gets rid of the usage - */ -#ifndef register -# define register -#endif - typedef char *caddr_t; -# define vsnprintf _vsnprintf -#endif /* SYS_WINNT */ - -int ntp_set_tod P((struct timeval *tvp, void *tzp)); - -#if defined (SYS_CYGWIN32) -#include -#define __int64 long long -#endif - -/*casey Tue May 27 15:45:25 SAT 1997*/ -#ifdef SYS_VXWORKS - -/* casey's new defines */ -#define NO_MAIN_ALLOWED 1 -#define NO_NETDB 1 -#define NO_RENAME 1 - -/* in vxWorks we use FIONBIO, but the others are defined for old systems, so - * all hell breaks loose if we leave them defined we define USE_FIONBIO to - * undefine O_NONBLOCK FNDELAY O_NDELAY where necessary. - */ -#define USE_FIONBIO 1 -/* end my new defines */ - -#define TIMEOFDAY 0x0 /* system wide realtime clock */ -#define HAVE_GETCLOCK 1 /* configure does not set this ... */ -#define HAVE_NO_NICE 1 /* configure does not set this ... */ -#define HAVE_RANDOM 1 /* configure does not set this ... */ -#define HAVE_SRANDOM 1 /* configure does not set this ... */ - -#define NODETACH 1 - -/* vxWorks specific additions to take care of its - * unix (non)complicance - */ - -#include "vxWorks.h" -#include "ioLib.h" -#include "taskLib.h" -#include "time.h" - -extern int sysClkRateGet P(()); - -/* usrtime.h - * Bob Herlien's excellent time code find it at: - * ftp://ftp.atd.ucar.edu/pub/vxworks/vx/usrTime.shar - * I would recommend this instead of clock_[g|s]ettime() plus you get - * adjtime() too ... casey - */ -/* -extern int gettimeofday P(( struct timeval *tp, struct timezone *tzp )); -extern int settimeofday P((struct timeval *, struct timezone *)); -extern int adjtime P(( struct timeval *delta, struct timeval *olddelta )); - */ - -/* in machines.c */ -extern void sleep P((int seconds)); -extern void alarm P((int seconds)); -/* machines.c */ - - -/* this is really this */ -#define getpid taskIdSelf -#define getclock clock_gettime -#define fcntl ioctl -#define _getch getchar -#define random rand -#define srandom srand - -/* define this away for vxWorks */ -#define openlog(x,y) -/* use local defines for these */ -#undef min -#undef max - -#endif /* SYS_VXWORKS */ - -#ifdef NO_NETDB -/* These structures are needed for gethostbyname() etc... */ -/* structures used by netdb.h */ -struct hostent { - char *h_name; /* official name of host */ - char **h_aliases; /* alias list */ - int h_addrtype; /* host address type */ - int h_length; /* length of address */ - char **h_addr_list; /* list of addresses from name server */ -#define h_addr h_addr_list[0] /* address, for backward compatibility */ -}; - -struct servent { - char *s_name; /* official service name */ - char **s_aliases; /* alias list */ - int s_port; /* port # */ - char *s_proto; /* protocol to use */ -}; -extern int h_errno; - -#define TRY_AGAIN 2 - -struct hostent *gethostbyname P((char * netnum)); -struct hostent *gethostbyaddr P((char * netnum, int size, int addr_type)); -/* type is the protocol */ -struct servent *getservbyname P((char *name, char *type)); -#endif /* NO_NETDB */ - -#ifdef NO_MAIN_ALLOWED -/* we have no main routines so lets make a plan */ -#define CALL(callname, progname, callmain) \ - extern int callmain (int,char**); \ - void callname (a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10) \ - char *a0; \ - char *a1; \ - char *a2; \ - char *a3; \ - char *a4; \ - char *a5; \ - char *a6; \ - char *a7; \ - char *a8; \ - char *a9; \ - char *a10; \ - { \ - char *x[11]; \ - int argc; \ - char *argv[] = {progname,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL}; \ - int i; \ - for (i=0;i<11;i++) \ - x[i] = NULL; \ - x[0] = a0; \ - x[1] = a1; \ - x[2] = a2; \ - x[3] = a3; \ - x[4] = a4; \ - x[5] = a5; \ - x[6] = a6; \ - x[7] = a7; \ - x[8] = a8; \ - x[9] = a9; \ - x[10] = a10; \ - argc=1; \ - for (i=0; i<11;i++) \ - if (x[i]) \ - { \ - argv[argc++] = x[i]; \ - } \ - callmain(argc,argv); \ - } -#endif /* NO_MAIN_ALLOWED */ -/*casey Tue May 27 15:45:25 SAT 1997*/ - -/* - * Here's where autoconfig starts to take over - */ -#ifdef HAVE_SYS_STROPTS_H -# ifdef HAVE_SYS_STREAM_H -# define STREAM -# endif -#endif - -#ifndef RETSIGTYPE -# if defined(NTP_POSIX_SOURCE) -# define RETSIGTYPE void -# else -# define RETSIGTYPE int -# endif -#endif - -#ifdef NTP_SYSCALLS_STD -# ifndef NTP_SYSCALL_GET -# define NTP_SYSCALL_GET 235 -# endif -# ifndef NTP_SYSCALL_ADJ -# define NTP_SYSCALL_ADJ 236 -# endif -#endif /* NTP_SYSCALLS_STD */ - -#ifdef MPE -# include -# include -# include -# include - -/* missing functions that are easily renamed */ - -# define _getch getchar - -/* special functions that require MPE-specific wrappers */ - -# define bind __ntp_mpe_bind -# define fcntl __ntp_mpe_fcntl - -/* standard macros missing from MPE include files */ - -# define IN_CLASSD(i) ((((long)(i))&0xf0000000)==0xe0000000) -# define IN_MULTICAST IN_CLASSD -# define ITIMER_REAL 0 -# define MAXHOSTNAMELEN 64 - -/* standard structures missing from MPE include files */ - -struct itimerval { - struct timeval it_interval; /* timer interval */ - struct timeval it_value; /* current value */ -}; - -/* various declarations to make gcc stop complaining */ - -extern int __filbuf(FILE *); -extern int __flsbuf(int, FILE *); -extern int gethostname(char *, int); -extern unsigned long inet_addr(char *); -extern char *strdup(const char *); - -/* miscellaneous NTP macros */ - -# define HAVE_NO_NICE -#endif /* MPE */ - -#ifdef HAVE_RTPRIO -# define HAVE_NO_NICE -#else -# ifdef HAVE_SETPRIORITY -# define HAVE_BSD_NICE -# else -# ifdef HAVE_NICE -# define HAVE_ATT_NICE -# endif -# endif -#endif - -#if !defined(HAVE_ATT_NICE) \ - && !defined(HAVE_BSD_NICE) \ - && !defined(HAVE_NO_NICE) \ - && !defined(SYS_WINNT) -#include "ERROR: You must define one of the HAVE_xx_NICE defines!" -#endif - -/* - * use only one tty model - no use in initialising - * a tty in three ways - * HAVE_TERMIOS is preferred over HAVE_SYSV_TTYS over HAVE_BSD_TTYS - */ - -#ifdef HAVE_TERMIOS_H -# define HAVE_TERMIOS -#else -# ifdef HAVE_TERMIO_H -# define HAVE_SYSV_TTYS -# else -# ifdef HAVE_SGTTY_H -# define HAVE_BSD_TTYS -# endif -# endif -#endif - -#ifdef HAVE_TERMIOS -# undef HAVE_BSD_TTYS -# undef HAVE_SYSV_TTYS -#endif - -#ifndef HAVE_TIMEGM -extern time_t timegm P((struct tm *)); -#endif - -#ifdef HAVE_SYSV_TTYS -# undef HAVE_BSD_TTYS -#endif - -#if !defined(SYS_WINNT) && !defined(VMS) && !defined(SYS_VXWORKS) -# if !defined(HAVE_SYSV_TTYS) \ - && !defined(HAVE_BSD_TTYS) \ - && !defined(HAVE_TERMIOS) -#include "ERROR: no tty type defined!" -# endif -#endif /* SYS_WINNT || VMS || SYS_VXWORKS*/ - -#ifdef WORDS_BIGENDIAN -# define XNTP_BIG_ENDIAN 1 -#else -# define XNTP_LITTLE_ENDIAN 1 -#endif - -/* - * Byte order woes. - * This used to be resolved by calling ntohl() and htonl() to swap things - * around, but this turned out to be quite costly on Vaxes where those - * things are actual functions. The code now straightens out byte - * order troubles on its own, with no performance penalty for little - * end first machines, but at great expense to cleanliness. - */ -#if !defined(XNTP_BIG_ENDIAN) && !defined(XNTP_LITTLE_ENDIAN) - /* - * Pick one or the other. - */ - BYTE_ORDER_NOT_DEFINED_FOR_AUTHENTICATION -#endif - -#if defined(XNTP_BIG_ENDIAN) && defined(XNTP_LITTLE_ENDIAN) - /* - * Pick one or the other. - */ - BYTE_ORDER_NOT_DEFINED_FOR_AUTHENTICATION -#endif - -#endif /* __ntp_machine */ diff --git a/src/ntp_request.h b/src/ntp_request.h deleted file mode 100644 index 1b75f70d..00000000 --- a/src/ntp_request.h +++ /dev/null @@ -1,884 +0,0 @@ -/* - * ntp_request.h - definitions for the ntpd remote query facility - */ - -#ifndef _NTP_REQUEST_H -#define _NTP_REQUEST_H - -#include "ntp_types.h" - -/* - * A mode 7 packet is used exchanging data between an NTP server - * and a client for purposes other than time synchronization, e.g. - * monitoring, statistics gathering and configuration. A mode 7 - * packet has the following format: - * - * 0 1 2 3 - * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 - * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ - * |R|M| VN | Mode|A| Sequence | Implementation| Req Code | - * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ - * | Err | Number of data items | MBZ | Size of data item | - * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ - * | | - * | Data (Minimum 0 octets, maximum 500 octets) | - * | | - * [...] - * | | - * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ - * | Encryption Keyid (when A bit set) | - * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ - * | | - * | Message Authentication Code (when A bit set) | - * | | - * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ - * - * where the fields are (note that the client sends requests, the server - * responses): - * - * Response Bit: This packet is a response (if clear, packet is a request). - * - * More Bit: Set for all packets but the last in a response which - * requires more than one packet. - * - * Version Number: 2 for current version - * - * Mode: Always 7 - * - * Authenticated bit: If set, this packet is authenticated. - * - * Sequence number: For a multipacket response, contains the sequence - * number of this packet. 0 is the first in the sequence, - * 127 (or less) is the last. The More Bit must be set in - * all packets but the last. - * - * Implementation number: The number of the implementation this request code - * is defined by. An implementation number of zero is used - * for requst codes/data formats which all implementations - * agree on. Implementation number 255 is reserved (for - * extensions, in case we run out). - * - * Request code: An implementation-specific code which specifies the - * operation to be (which has been) performed and/or the - * format and semantics of the data included in the packet. - * - * Err: Must be 0 for a request. For a response, holds an error - * code relating to the request. If nonzero, the operation - * requested wasn't performed. - * - * 0 - no error - * 1 - incompatable implementation number - * 2 - unimplemented request code - * 3 - format error (wrong data items, data size, packet size etc.) - * 4 - no data available (e.g. request for details on unknown peer) - * 5-6 I don't know - * 7 - authentication failure (i.e. permission denied) - * - * Number of data items: number of data items in packet. 0 to 500 - * - * MBZ: A reserved data field, must be zero in requests and responses. - * - * Size of data item: size of each data item in packet. 0 to 500 - * - * Data: Variable sized area containing request/response data. For - * requests and responses the size in octets must be greater - * than or equal to the product of the number of data items - * and the size of a data item. For requests the data area - * must be exactly 40 octets in length. For responses the - * data area may be any length between 0 and 500 octets - * inclusive. - * - * Message Authentication Code: Same as NTP spec, in definition and function. - * May optionally be included in requests which require - * authentication, is never included in responses. - * - * The version number, mode and keyid have the same function and are - * in the same location as a standard NTP packet. The request packet - * is the same size as a standard NTP packet to ease receive buffer - * management, and to allow the same encryption procedure to be used - * both on mode 7 and standard NTP packets. The mac is included when - * it is required that a request be authenticated, the keyid should be - * zero in requests in which the mac is not included. - * - * The data format depends on the implementation number/request code pair - * and whether the packet is a request or a response. The only requirement - * is that data items start in the octet immediately following the size - * word and that data items be concatenated without padding between (i.e. - * if the data area is larger than data_items*size, all padding is at - * the end). Padding is ignored, other than for encryption purposes. - * Implementations using encryption might want to include a time stamp - * or other data in the request packet padding. The key used for requests - * is implementation defined, but key 15 is suggested as a default. - */ - -/* - * A request packet. These are almost a fixed length. - */ -struct req_pkt { - u_char rm_vn_mode; /* response, more, version, mode */ - u_char auth_seq; /* key, sequence number */ - u_char implementation; /* implementation number */ - u_char request; /* request number */ - u_short err_nitems; /* error code/number of data items */ - u_short mbz_itemsize; /* item size */ - char data[MAXFILENAME + 48]; /* data area [32 prev](176 byte max) */ - /* struct conf_peer must fit */ - l_fp tstamp; /* time stamp, for authentication */ - keyid_t keyid; /* encryption key */ - char mac[MAX_MAC_LEN-sizeof(u_int32)]; /* (optional) 8 byte auth code */ -}; - -/* - * The req_pkt_tail structure is used by ntpd to adjust for different - * packet sizes that may arrive. - */ -struct req_pkt_tail { - l_fp tstamp; /* time stamp, for authentication */ - keyid_t keyid; /* encryption key */ - char mac[MAX_MAC_LEN-sizeof(u_int32)]; /* (optional) 8 byte auth code */ -}; - -/* - * Input packet lengths. One with the mac, one without. - */ -#define REQ_LEN_HDR 8 /* 4 * u_char + 2 * u_short */ -#define REQ_LEN_MAC (sizeof(struct req_pkt)) -#define REQ_LEN_NOMAC (sizeof(struct req_pkt) - MAX_MAC_LEN) - -/* - * A response packet. The length here is variable, this is a - * maximally sized one. Note that this implementation doesn't - * authenticate responses. - */ -#define RESP_HEADER_SIZE (8) -#define RESP_DATA_SIZE (500) - -struct resp_pkt { - u_char rm_vn_mode; /* response, more, version, mode */ - u_char auth_seq; /* key, sequence number */ - u_char implementation; /* implementation number */ - u_char request; /* request number */ - u_short err_nitems; /* error code/number of data items */ - u_short mbz_itemsize; /* item size */ - char data[RESP_DATA_SIZE]; /* data area */ -}; - - -/* - * Information error codes - */ -#define INFO_OKAY 0 -#define INFO_ERR_IMPL 1 /* incompatable implementation */ -#define INFO_ERR_REQ 2 /* unknown request code */ -#define INFO_ERR_FMT 3 /* format error */ -#define INFO_ERR_NODATA 4 /* no data for this request */ -#define INFO_ERR_AUTH 7 /* authentication failure */ - -/* - * Maximum sequence number. - */ -#define MAXSEQ 127 - - -/* - * Bit setting macros for multifield items. - */ -#define RESP_BIT 0x80 -#define MORE_BIT 0x40 - -#define ISRESPONSE(rm_vn_mode) (((rm_vn_mode)&RESP_BIT)!=0) -#define ISMORE(rm_vn_mode) (((rm_vn_mode)&MORE_BIT)!=0) -#define INFO_VERSION(rm_vn_mode) ((u_char)(((rm_vn_mode)>>3)&0x7)) -#define INFO_MODE(rm_vn_mode) ((rm_vn_mode)&0x7) - -#define RM_VN_MODE(resp, more, version) \ - ((u_char)(((resp)?RESP_BIT:0)\ - |((more)?MORE_BIT:0)\ - |((version?version:(NTP_OLDVERSION+1))<<3)\ - |(MODE_PRIVATE))) - -#define INFO_IS_AUTH(auth_seq) (((auth_seq) & 0x80) != 0) -#define INFO_SEQ(auth_seq) ((auth_seq)&0x7f) -#define AUTH_SEQ(auth, seq) ((u_char)((((auth)!=0)?0x80:0)|((seq)&0x7f))) - -#define INFO_ERR(err_nitems) ((u_short)((ntohs(err_nitems)>>12)&0xf)) -#define INFO_NITEMS(err_nitems) ((u_short)(ntohs(err_nitems)&0xfff)) -#define ERR_NITEMS(err, nitems) (htons((u_short)((((u_short)(err)<<12)&0xf000)\ - |((u_short)(nitems)&0xfff)))) - -#define INFO_MBZ(mbz_itemsize) ((ntohs(mbz_itemsize)>>12)&0xf) -#define INFO_ITEMSIZE(mbz_itemsize) ((u_short)(ntohs(mbz_itemsize)&0xfff)) -#define MBZ_ITEMSIZE(itemsize) (htons((u_short)(itemsize))) - - -/* - * Implementation numbers. One for universal use and one for ntpd. - */ -#define IMPL_UNIV 0 -#define IMPL_XNTPD_OLD 2 /* Used by pre ipv6 ntpdc */ -#define IMPL_XNTPD 3 /* Used by post ipv6 ntpdc */ - -/* - * Some limits related to authentication. Frames which are - * authenticated must include a time stamp which differs from - * the receive time stamp by no more than 10 seconds. - */ -#define INFO_TS_MAXSKEW 10. - -/* - * Universal request codes go here. There aren't any. - */ - -/* - * NTPD request codes go here. - */ -#define REQ_PEER_LIST 0 /* return list of peers */ -#define REQ_PEER_LIST_SUM 1 /* return summary info for all peers */ -#define REQ_PEER_INFO 2 /* get standard information on peer */ -#define REQ_PEER_STATS 3 /* get statistics for peer */ -#define REQ_SYS_INFO 4 /* get system information */ -#define REQ_SYS_STATS 5 /* get system stats */ -#define REQ_IO_STATS 6 /* get I/O stats */ -#define REQ_MEM_STATS 7 /* stats related to peer list maint */ -#define REQ_LOOP_INFO 8 /* info from the loop filter */ -#define REQ_TIMER_STATS 9 /* get timer stats */ -#define REQ_CONFIG 10 /* configure a new peer */ -#define REQ_UNCONFIG 11 /* unconfigure an existing peer */ -#define REQ_SET_SYS_FLAG 12 /* set system flags */ -#define REQ_CLR_SYS_FLAG 13 /* clear system flags */ -#define REQ_MONITOR 14 /* (not used) */ -#define REQ_NOMONITOR 15 /* (not used) */ -#define REQ_GET_RESTRICT 16 /* return restrict list */ -#define REQ_RESADDFLAGS 17 /* add flags to restrict list */ -#define REQ_RESSUBFLAGS 18 /* remove flags from restrict list */ -#define REQ_UNRESTRICT 19 /* remove entry from restrict list */ -#define REQ_MON_GETLIST 20 /* return data collected by monitor */ -#define REQ_RESET_STATS 21 /* reset stat counters */ -#define REQ_RESET_PEER 22 /* reset peer stat counters */ -#define REQ_REREAD_KEYS 23 /* reread the encryption key file */ -#define REQ_DO_DIRTY_HACK 24 /* (not used) */ -#define REQ_DONT_DIRTY_HACK 25 /* (not used) */ -#define REQ_TRUSTKEY 26 /* add a trusted key */ -#define REQ_UNTRUSTKEY 27 /* remove a trusted key */ -#define REQ_AUTHINFO 28 /* return authentication info */ -#define REQ_TRAPS 29 /* return currently set traps */ -#define REQ_ADD_TRAP 30 /* add a trap */ -#define REQ_CLR_TRAP 31 /* clear a trap */ -#define REQ_REQUEST_KEY 32 /* define a new request keyid */ -#define REQ_CONTROL_KEY 33 /* define a new control keyid */ -#define REQ_GET_CTLSTATS 34 /* get stats from the control module */ -#define REQ_GET_LEAPINFO 35 /* (not used) */ -#define REQ_GET_CLOCKINFO 36 /* get clock information */ -#define REQ_SET_CLKFUDGE 37 /* set clock fudge factors */ -#define REQ_GET_KERNEL 38 /* get kernel pll/pps information */ -#define REQ_GET_CLKBUGINFO 39 /* get clock debugging info */ -#define REQ_SET_PRECISION 41 /* (not used) */ -#define REQ_MON_GETLIST_1 42 /* return collected v1 monitor data */ -#define REQ_HOSTNAME_ASSOCID 43 /* Here is a hostname + assoc_id */ - -/* Determine size of pre-v6 version of structures */ -#define v4sizeof(type) offsetof(type, v6_flag) - -/* - * Flags in the peer information returns - */ -#define INFO_FLAG_CONFIG 0x1 -#define INFO_FLAG_SYSPEER 0x2 -#define INFO_FLAG_BURST 0x4 -#define INFO_FLAG_REFCLOCK 0x8 -#define INFO_FLAG_PREFER 0x10 -#define INFO_FLAG_AUTHENABLE 0x20 -#define INFO_FLAG_SEL_CANDIDATE 0x40 -#define INFO_FLAG_SHORTLIST 0x80 - -/* - * Flags in the system information returns - */ -#define INFO_FLAG_BCLIENT 0x1 -#define INFO_FLAG_AUTHENTICATE 0x2 -#define INFO_FLAG_NTP 0x4 -#define INFO_FLAG_KERNEL 0x8 -#define INFO_FLAG_MONITOR 0x40 -#define INFO_FLAG_FILEGEN 0x80 -#define INFO_FLAG_CAL 0x10 -#define INFO_FLAG_PPS_SYNC 0x20 - -/* - * Peer list structure. Used to return raw lists of peers. It goes - * without saying that everything returned is in network byte order. - * Well, it *would* have gone without saying, but somebody said it. - */ -struct info_peer_list { - u_int32 addr; /* address of peer */ - u_short port; /* port number of peer */ - u_char hmode; /* mode for this peer */ - u_char flags; /* flags (from above) */ - u_int v6_flag; /* is this v6 or not */ - u_int unused1; /* (unused) padding for addr6 */ - struct in6_addr addr6; /* v6 address of peer */ -}; - - -/* - * Peer summary structure. Sort of the info that ntpdc returns by default. - */ -struct info_peer_summary { - u_int32 dstadr; /* local address (zero for undetermined) */ - u_int32 srcadr; /* source address */ - u_short srcport; /* source port */ - u_char stratum; /* stratum of peer */ - s_char hpoll; /* host polling interval */ - s_char ppoll; /* peer polling interval */ - u_char reach; /* reachability register */ - u_char flags; /* flags, from above */ - u_char hmode; /* peer mode */ - s_fp delay; /* peer.estdelay */ - l_fp offset; /* peer.estoffset */ - u_fp dispersion; /* peer.estdisp */ - u_int v6_flag; /* is this v6 or not */ - u_int unused1; /* (unused) padding for dstadr6 */ - struct in6_addr dstadr6; /* local address (v6) */ - struct in6_addr srcadr6; /* source address (v6) */ -}; - - -/* - * Peer information structure. - */ -struct info_peer { - u_int32 dstadr; /* local address */ - u_int32 srcadr; /* source address */ - u_short srcport; /* remote port */ - u_char flags; /* peer flags */ - u_char leap; /* peer.leap */ - u_char hmode; /* peer.hmode */ - u_char pmode; /* peer.pmode */ - u_char stratum; /* peer.stratum */ - u_char ppoll; /* peer.ppoll */ - u_char hpoll; /* peer.hpoll */ - s_char precision; /* peer.precision */ - u_char version; /* peer.version */ - u_char unused8; - u_char reach; /* peer.reach */ - u_char unreach; /* peer.unreach */ - u_char flash; /* old peer.flash */ - u_char ttl; /* peer.ttl */ - u_short flash2; /* new peer.flash */ - associd_t associd; /* association ID */ - keyid_t keyid; /* peer.keyid */ - u_int32 pkeyid; /* unused */ - u_int32 refid; /* peer.refid */ - u_int32 timer; /* peer.timer */ - s_fp rootdelay; /* peer.distance */ - u_fp rootdispersion; /* peer.dispersion */ - l_fp reftime; /* peer.reftime */ - l_fp org; /* peer.org */ - l_fp rec; /* peer.rec */ - l_fp xmt; /* peer.xmt */ - s_fp filtdelay[NTP_SHIFT]; /* delay shift register */ - l_fp filtoffset[NTP_SHIFT]; /* offset shift register */ - u_char order[NTP_SHIFT]; /* order of peers from last filter */ - s_fp delay; /* peer.estdelay */ - u_fp dispersion; /* peer.estdisp */ - l_fp offset; /* peer.estoffset */ - u_fp selectdisp; /* peer select dispersion */ - int32 unused1; /* (obsolete) */ - int32 unused2; - int32 unused3; - int32 unused4; - int32 unused5; - int32 unused6; - int32 unused7; - s_fp estbdelay; /* broadcast offset */ - u_int v6_flag; /* is this v6 or not */ - u_int unused9; /* (unused) padding for dstadr6 */ - struct in6_addr dstadr6; /* local address (v6-like) */ - struct in6_addr srcadr6; /* sources address (v6-like) */ -}; - - -/* - * Peer statistics structure - */ -struct info_peer_stats { - u_int32 dstadr; /* local address */ - u_int32 srcadr; /* remote address */ - u_short srcport; /* remote port */ - u_short flags; /* peer flags */ - u_int32 timereset; /* time counters were reset */ - u_int32 timereceived; /* time since a packet received */ - u_int32 timetosend; /* time until a packet sent */ - u_int32 timereachable; /* time peer has been reachable */ - u_int32 sent; /* number sent */ - u_int32 unused1; /* (unused) */ - u_int32 processed; /* number processed */ - u_int32 unused2; /* (unused) */ - u_int32 badauth; /* bad authentication */ - u_int32 bogusorg; /* bogus origin */ - u_int32 oldpkt; /* duplicate */ - u_int32 unused3; /* (unused) */ - u_int32 unused4; /* (unused) */ - u_int32 seldisp; /* bad dispersion */ - u_int32 selbroken; /* bad reference time */ - u_int32 unused5; /* (unused) */ - u_char candidate; /* select order */ - u_char unused6; /* (unused) */ - u_char unused7; /* (unused) */ - u_char unused8; /* (unused) */ - u_int v6_flag; /* is this v6 or not */ - u_int unused9; /* (unused) padding for dstadr6 */ - struct in6_addr dstadr6; /* local address */ - struct in6_addr srcadr6; /* remote address */ -}; - - -/* - * Loop filter variables - */ -struct info_loop { - l_fp last_offset; - l_fp drift_comp; - u_int32 compliance; - u_int32 watchdog_timer; -}; - - -/* - * System info. Mostly the sys.* variables, plus a few unique to - * the implementation. - */ -struct info_sys { - u_int32 peer; /* system peer address (v4) */ - u_char peer_mode; /* mode we are syncing to peer in */ - u_char leap; /* system leap bits */ - u_char stratum; /* our stratum */ - s_char precision; /* local clock precision */ - s_fp rootdelay; /* distance from sync source */ - u_fp rootdispersion; /* dispersion from sync source */ - u_int32 refid; /* reference ID of sync source */ - l_fp reftime; /* system reference time */ - u_int32 poll; /* system poll interval */ - u_char flags; /* system flags */ - u_char unused1; /* unused */ - u_char unused2; /* unused */ - u_char unused3; /* unused */ - s_fp bdelay; /* default broadcast offset */ - s_fp frequency; /* frequency residual (scaled ppm) */ - l_fp authdelay; /* default authentication delay */ - u_fp stability; /* clock stability (scaled ppm) */ - u_int v6_flag; /* is this v6 or not */ - u_int unused4; /* unused, padding for peer6 */ - struct in6_addr peer6; /* system peer address (v6) */ -}; - - -/* - * System stats. These are collected in the protocol module - */ -struct info_sys_stats { - u_int32 timeup; /* time since restart */ - u_int32 timereset; /* time since reset */ - u_int32 denied; /* access denied */ - u_int32 oldversionpkt; /* recent version */ - u_int32 newversionpkt; /* current version */ - u_int32 unknownversion; /* bad version */ - u_int32 badlength; /* bad length or format */ - u_int32 processed; /* packets processed */ - u_int32 badauth; /* bad authentication */ - u_int32 received; /* packets received */ - u_int32 limitrejected; /* rate exceeded */ -}; - - -/* - * System stats - old version - */ -struct old_info_sys_stats { - u_int32 timeup; /* time since restart */ - u_int32 timereset; /* time since reset */ - u_int32 denied; /* access denied */ - u_int32 oldversionpkt; /* recent version */ - u_int32 newversionpkt; /* current version */ - u_int32 unknownversion; /* bad version */ - u_int32 badlength; /* bad length or format */ - u_int32 processed; /* packets processed */ - u_int32 badauth; /* bad authentication */ - u_int32 wanderhold; /* (not used) */ -}; - - -/* - * Peer memory statistics. Collected in the peer module. - */ -struct info_mem_stats { - u_int32 timereset; /* time since reset */ - u_short totalpeermem; - u_short freepeermem; - u_int32 findpeer_calls; - u_int32 allocations; - u_int32 demobilizations; - u_char hashcount[NTP_HASH_SIZE]; -}; - - -/* - * I/O statistics. Collected in the I/O module - */ -struct info_io_stats { - u_int32 timereset; /* time since reset */ - u_short totalrecvbufs; /* total receive bufs */ - u_short freerecvbufs; /* free buffers */ - u_short fullrecvbufs; /* full buffers */ - u_short lowwater; /* number of times we've added buffers */ - u_int32 dropped; /* dropped packets */ - u_int32 ignored; /* ignored packets */ - u_int32 received; /* received packets */ - u_int32 sent; /* packets sent */ - u_int32 notsent; /* packets not sent */ - u_int32 interrupts; /* interrupts we've handled */ - u_int32 int_received; /* received by interrupt handler */ -}; - - -/* - * Timer stats. Guess where from. - */ -struct info_timer_stats { - u_int32 timereset; /* time since reset */ - u_int32 alarms; /* alarms we've handled */ - u_int32 overflows; /* timer overflows */ - u_int32 xmtcalls; /* calls to xmit */ -}; - - -/* - * Structure for passing peer configuration information - */ -struct old_conf_peer { - u_int32 peeraddr; /* address to poll */ - u_char hmode; /* mode, either broadcast, active or client */ - u_char version; /* version number to poll with */ - u_char minpoll; /* min host poll interval */ - u_char maxpoll; /* max host poll interval */ - u_char flags; /* flags for this request */ - u_char ttl; /* time to live (multicast) or refclock mode */ - u_short unused; /* unused */ - keyid_t keyid; /* key to use for this association */ -}; - -struct conf_peer { - u_int32 peeraddr; /* address to poll */ - u_char hmode; /* mode, either broadcast, active or client */ - u_char version; /* version number to poll with */ - u_char minpoll; /* min host poll interval */ - u_char maxpoll; /* max host poll interval */ - u_char flags; /* flags for this request */ - u_char ttl; /* time to live (multicast) or refclock mode */ - u_short unused1; /* unused */ - keyid_t keyid; /* key to use for this association */ - char keystr[MAXFILENAME]; /* public key file name*/ - u_int v6_flag; /* is this v6 or not */ - u_int unused2; /* unused, padding for peeraddr6 */ - struct in6_addr peeraddr6; /* ipv6 address to poll */ -}; - -#define CONF_FLAG_AUTHENABLE 0x01 -#define CONF_FLAG_PREFER 0x02 -#define CONF_FLAG_BURST 0x04 -#define CONF_FLAG_IBURST 0x08 -#define CONF_FLAG_NOSELECT 0x10 -#define CONF_FLAG_SKEY 0x20 - -/* - * Structure for passing peer deletion information. Currently - * we only pass the address and delete all configured peers with - * this addess. - */ -struct conf_unpeer { - u_int32 peeraddr; /* address of peer */ - u_int v6_flag; /* is this v6 or not */ - struct in6_addr peeraddr6; /* address of peer (v6) */ -}; - -/* - * Structure for carrying system flags. - */ -struct conf_sys_flags { - u_int32 flags; -}; - -/* - * System flags we can set/clear - */ -#define SYS_FLAG_BCLIENT 0x01 -#define SYS_FLAG_PPS 0x02 -#define SYS_FLAG_NTP 0x04 -#define SYS_FLAG_KERNEL 0x08 -#define SYS_FLAG_MONITOR 0x10 -#define SYS_FLAG_FILEGEN 0x20 -#define SYS_FLAG_AUTH 0x40 -#define SYS_FLAG_CAL 0x80 - -/* - * Structure used for returning restrict entries - */ -struct info_restrict { - u_int32 addr; /* match address */ - u_int32 mask; /* match mask */ - u_int32 count; /* number of packets matched */ - u_short flags; /* restrict flags */ - u_short mflags; /* match flags */ - u_int v6_flag; /* is this v6 or not */ - u_int unused1; /* unused, padding for addr6 */ - struct in6_addr addr6; /* match address (v6) */ - struct in6_addr mask6; /* match mask (v6) */ -}; - - -/* - * Structure used for specifying restrict entries - */ -struct conf_restrict { - u_int32 addr; /* match address */ - u_int32 mask; /* match mask */ - u_short flags; /* restrict flags */ - u_short mflags; /* match flags */ - u_int v6_flag; /* is this v6 or not */ - struct in6_addr addr6; /* match address (v6) */ - struct in6_addr mask6; /* match mask (v6) */ -}; - - -/* - * Structure used for returning monitor data - */ -struct info_monitor_1 { - u_int32 lasttime; /* last packet from this host */ - u_int32 firsttime; /* first time we received a packet */ - u_int32 lastdrop; /* last time we rejected a packet due to client limitation policy */ - u_int32 count; /* count of packets received */ - u_int32 addr; /* host address V4 style */ - u_int32 daddr; /* destination host address */ - u_int32 flags; /* flags about destination */ - u_short port; /* port number of last reception */ - u_char mode; /* mode of last packet */ - u_char version; /* version number of last packet */ - u_int v6_flag; /* is this v6 or not */ - u_int unused1; /* unused, padding for addr6 */ - struct in6_addr addr6; /* host address V6 style */ - struct in6_addr daddr6; /* host address V6 style */ -}; - - -/* - * Structure used for returning monitor data - */ -struct info_monitor { - u_int32 lasttime; /* last packet from this host */ - u_int32 firsttime; /* first time we received a packet */ - u_int32 lastdrop; /* last time we rejected a packet due to client limitation policy */ - u_int32 count; /* count of packets received */ - u_int32 addr; /* host address */ - u_short port; /* port number of last reception */ - u_char mode; /* mode of last packet */ - u_char version; /* version number of last packet */ - u_int v6_flag; /* is this v6 or not */ - u_int unused1; /* unused, padding for addr6 */ - struct in6_addr addr6; /* host v6 address */ -}; - -/* - * Structure used for returning monitor data (old format - */ -struct old_info_monitor { - u_int32 lasttime; /* last packet from this host */ - u_int32 firsttime; /* first time we received a packet */ - u_int32 count; /* count of packets received */ - u_int32 addr; /* host address */ - u_short port; /* port number of last reception */ - u_char mode; /* mode of last packet */ - u_char version; /* version number of last packet */ - u_int v6_flag; /* is this v6 or not */ - struct in6_addr addr6; /* host address (v6)*/ -}; - -/* - * Structure used for passing indication of flags to clear - */ -struct reset_flags { - u_int32 flags; -}; - -#define RESET_FLAG_ALLPEERS 0x01 -#define RESET_FLAG_IO 0x02 -#define RESET_FLAG_SYS 0x04 -#define RESET_FLAG_MEM 0x08 -#define RESET_FLAG_TIMER 0x10 -#define RESET_FLAG_AUTH 0x20 -#define RESET_FLAG_CTL 0x40 - -#define RESET_ALLFLAGS \ - (RESET_FLAG_ALLPEERS|RESET_FLAG_IO|RESET_FLAG_SYS \ - |RESET_FLAG_MEM|RESET_FLAG_TIMER|RESET_FLAG_AUTH|RESET_FLAG_CTL) - -/* - * Structure used to return information concerning the authentication - * module. - */ -struct info_auth { - u_int32 timereset; /* time counters were reset */ - u_int32 numkeys; /* number of keys we know */ - u_int32 numfreekeys; /* number of free keys */ - u_int32 keylookups; /* calls to authhavekey() */ - u_int32 keynotfound; /* requested key unknown */ - u_int32 encryptions; /* number of encryptions */ - u_int32 decryptions; /* number of decryptions */ - u_int32 expired; /* number of expired keys */ - u_int32 keyuncached; /* calls to encrypt/decrypt with uncached key */ -}; - - -/* - * Structure used to pass trap information to the client - */ -struct info_trap { - u_int32 local_address; /* local interface addres (v4) */ - u_int32 trap_address; /* remote client's addres (v4) */ - u_short trap_port; /* remote port number */ - u_short sequence; /* sequence number */ - u_int32 settime; /* time trap last set */ - u_int32 origtime; /* time trap originally set */ - u_int32 resets; /* number of resets on this trap */ - u_int32 flags; /* trap flags, as defined in ntp_control.h */ - u_int v6_flag; /* is this v6 or not */ - struct in6_addr local_address6; /* local interface address (v6) */ - struct in6_addr trap_address6; /* remote client's address (v6) */ -}; - -/* - * Structure used to pass add/clear trap information to the client - */ -struct conf_trap { - u_int32 local_address; /* remote client's address */ - u_int32 trap_address; /* local interface address */ - u_short trap_port; /* remote client's port */ - u_short unused; /* (unused) */ - u_int v6_flag; /* is this v6 or not */ - struct in6_addr local_address6; /* local interface address (v6) */ - struct in6_addr trap_address6; /* remote client's address (v6) */ -}; - - -/* - * Structure used to return statistics from the control module - */ -struct info_control { - u_int32 ctltimereset; - u_int32 numctlreq; /* number of requests we've received */ - u_int32 numctlbadpkts; /* number of bad control packets */ - u_int32 numctlresponses; /* # resp packets sent */ - u_int32 numctlfrags; /* # of fragments sent */ - u_int32 numctlerrors; /* number of error responses sent */ - u_int32 numctltooshort; /* number of too short input packets */ - u_int32 numctlinputresp; /* number of responses on input */ - u_int32 numctlinputfrag; /* number of fragments on input */ - u_int32 numctlinputerr; /* # input pkts with err bit set */ - u_int32 numctlbadoffset; /* # input pkts with nonzero offset */ - u_int32 numctlbadversion; /* # input pkts with unknown version */ - u_int32 numctldatatooshort; /* data too short for count */ - u_int32 numctlbadop; /* bad op code found in packet */ - u_int32 numasyncmsgs; /* # async messages we've sent */ -}; - - -/* - * Structure used to return clock information - */ -struct info_clock { - u_int32 clockadr; - u_char type; - u_char flags; - u_char lastevent; - u_char currentstatus; - u_int32 polls; - u_int32 noresponse; - u_int32 badformat; - u_int32 baddata; - u_int32 timestarted; - l_fp fudgetime1; - l_fp fudgetime2; - int32 fudgeval1; - int32 fudgeval2; -}; - - -/* - * Structure used for setting clock fudge factors - */ -struct conf_fudge { - u_int32 clockadr; - u_int32 which; - l_fp fudgetime; - int32 fudgeval_flags; -}; - -#define FUDGE_TIME1 1 -#define FUDGE_TIME2 2 -#define FUDGE_VAL1 3 -#define FUDGE_VAL2 4 -#define FUDGE_FLAGS 5 - - -/* - * Structure used for returning clock debugging info - */ -#define NUMCBUGVALUES 16 -#define NUMCBUGTIMES 32 - -struct info_clkbug { - u_int32 clockadr; - u_char nvalues; - u_char ntimes; - u_short svalues; - u_int32 stimes; - u_int32 values[NUMCBUGVALUES]; - l_fp times[NUMCBUGTIMES]; -}; - -/* - * Structure used for returning kernel pll/PPS information - */ -struct info_kernel { - int32 offset; - int32 freq; - int32 maxerror; - int32 esterror; - u_short status; - u_short shift; - int32 constant; - int32 precision; - int32 tolerance; - -/* - * Variables used only if PPS signal discipline is implemented - */ - int32 ppsfreq; - int32 jitter; - int32 stabil; - int32 jitcnt; - int32 calcnt; - int32 errcnt; - int32 stbcnt; -}; - -/* - * Info returned with IP -> hostname lookup - */ -/* 144 might need to become 32, matching data[] member of req_pkt */ -#define NTP_MAXHOSTNAME (32 - sizeof(u_int32) - sizeof(u_short)) -struct info_dns_assoc { - u_int32 peeraddr; /* peer address (HMS: being careful...) */ - associd_t associd; /* association ID */ - char hostname[NTP_MAXHOSTNAME]; /* hostname */ -}; -#endif /* NTP_REQUEST_H */ diff --git a/src/ntp_types.h b/src/ntp_types.h deleted file mode 100644 index 0b575c8c..00000000 --- a/src/ntp_types.h +++ /dev/null @@ -1,80 +0,0 @@ -/* - * ntp_types.h - defines how int32 and u_int32 are treated. - * For 64 bit systems like the DEC Alpha, they have to be defined - * as int and u_int. - * For 32 bit systems, define them as long and u_long - */ -#include -#include "ntp_machine.h" - -#ifndef _NTP_TYPES_ -#define _NTP_TYPES_ - -/* - * This is another naming conflict. - * On NetBSD for MAC the macro "mac" is defined as 1 - * this is fun for us as a packet structure contains an - * optional "mac" member - severe confusion results 8-) - * As we hopefully do not have to rely on that macro we - * just undefine that. - */ -#ifdef mac -#undef mac -#endif - -/* - * Set up for prototyping - */ -#ifndef P -#if defined(__STDC__) || defined(HAVE_PROTOTYPES) -#define P(x) x -#else /* not __STDC__ and not HAVE_PROTOTYPES */ -#define P(x) () -#endif /* not __STDC__ and HAVE_PROTOTYPES */ -#endif /* P */ - -/* - * VMS DECC (v4.1), {u_char,u_short,u_long} are only in SOCKET.H, - * and u_int isn't defined anywhere - */ -#if defined(VMS) -#include -typedef unsigned int u_int; -/* - * Note: VMS DECC has long == int (even on __alpha), - * so the distinction below doesn't matter - */ -#endif /* VMS */ - -#if (SIZEOF_INT == 4) -# ifndef int32 -# define int32 int -# endif -# ifndef u_int32 -# define u_int32 unsigned int -# endif -#else /* not sizeof(int) == 4 */ -# if (SIZEOF_LONG == 4) -# else /* not sizeof(long) == 4 */ -# ifndef int32 -# define int32 long -# endif -# ifndef u_int32 -# define u_int32 unsigned long -# endif -# endif /* not sizeof(long) == 4 */ -# include "Bletch: what's 32 bits on this machine?" -#endif /* not sizeof(int) == 4 */ - -typedef u_char ntp_u_int8_t; -typedef u_short ntp_u_int16_t; -typedef u_int32 ntp_u_int32_t; - -typedef struct ntp_uint64_t { u_int32 val[2]; } ntp_uint64_t; - -typedef unsigned short associd_t; /* association ID */ -typedef u_int32 keyid_t; /* cryptographic key ID */ -typedef u_int32 tstamp_t; /* NTP seconds timestamp */ - -#endif /* _NTP_TYPES_ */ - -- 2.30.2