e48c28631a4a74a26806984f8ebcd3e99e3a7f3c
[dragonfly.git] / usr.sbin / timed / timed / globals.h
1 /*-
2  * Copyright (c) 1985, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  *      @(#)globals.h   8.1 (Berkeley) 6/6/93
34  *      $FreeBSD: src/usr.sbin/timed/timed/globals.h,v 1.5 2000/03/03 13:01:56 shin Exp $
35  *      $DragonFly: src/usr.sbin/timed/timed/globals.h,v 1.3 2004/09/05 02:16:48 dillon Exp $
36  */
37
38 #include <sys/param.h>
39 #include <sys/time.h>
40 #include <sys/socket.h>
41
42 #include <netinet/in.h>
43 #include <arpa/inet.h>
44
45 #include <err.h>
46 #include <errno.h>
47 #include <limits.h>
48 #include <netdb.h>
49 #include <stdio.h>
50 #include <stdlib.h>
51 #include <string.h>
52 #include <syslog.h>
53 #include <syslog.h>
54 #include <unistd.h>
55 #include <libutil.h>
56
57 #include <protocols/timed.h>
58
59 #define SECHR   (60*60)
60 #define SECDAY  (24*SECHR)
61
62 extern int sock;
63
64 /* Best expected round trip for a measurement.
65  * This is essentially the number of milliseconds per CPU tick (CLK_TCK?).
66  * All delays shorter than this are usually reported as 0.
67  */
68 #define MIN_ROUND ((1000-1)/CLK_TCK)
69
70
71 #define SAMPLEINTVL     240             /* synch() freq for master in sec */
72 #define MAXADJ          20              /* max adjtime() correction in sec */
73
74 #define MAX_TRIM        3000000         /* max drift in nsec/sec, 0.3% */
75 #define BIG_ADJ         (MAX_TRIM/1000*SAMPLEINTVL*2)   /* max good adj */
76
77 #define MINTOUT         360             /* election delays, 6-15 minutes */
78 #define MAXTOUT         900
79
80 #define BAD_STATUS      (-1)
81 #define GOOD            1
82 #define UNREACHABLE     2
83 #define NONSTDTIME      3
84 #define HOSTDOWN        0x7fffffff
85
86 #define OFF             0
87 #define ON              1
88
89 #define MAX_HOPCNT      10              /* max value for tsp_hpcnt */
90
91 #define LOSTHOST        3               /* forget after this many failures */
92
93 #define VALID_RANGE (MAXADJ*1000)       /* good times in milliseconds */
94 #define GOOD_RANGE (MIN_ROUND*2)
95 #define VGOOD_RANGE (MIN_ROUND-1)
96
97
98 /*
99  * Global and per-network states.
100  */
101 #define NOMASTER        0               /* no good master */
102 #define SLAVE           1
103 #define MASTER          2
104 #define IGNORE          4
105 #define ALL             (SLAVE|MASTER|IGNORE)
106 #define SUBMASTER       (SLAVE|MASTER)
107
108 #define NHOSTS          1013            /* max of hosts controlled by timed
109                                          * This must be a prime number.
110                                          */
111 struct hosttbl {
112         struct  hosttbl *h_bak;         /* hash chain */
113         struct  hosttbl *h_fwd;
114         struct  hosttbl *l_bak;         /* "sequential" list */
115         struct  hosttbl *l_fwd;
116         struct  netinfo *ntp;
117         struct  sockaddr_in addr;
118         char    name[MAXHOSTNAMELEN];
119         u_char  head;                   /* 1=head of hash chain */
120         u_char  good;                   /* 0=trusted host, for averaging */
121         u_char  noanswer;               /* count of failures to answer */
122         u_char  need_set;               /* need a SETTIME */
123         u_short seq;
124         long    delta;
125 };
126
127 /* closed hash table with internal chaining */
128 extern struct hosttbl hosttbl[NHOSTS+1];
129 #define self hosttbl[0]
130 #define hostname (self.name)
131
132
133 struct netinfo {
134         struct  netinfo *next;
135         struct  in_addr net;
136         u_int32_t       mask;
137         struct  in_addr my_addr;
138         struct  sockaddr_in dest_addr;  /* broadcast addr or point-point */
139         long    status;
140         struct timeval slvwait;         /* delay before sending our time */
141         int     quit_count;             /* recent QUITs */
142 };
143
144 #include "extern.h"
145
146 #define tvtomsround(tv) ((tv).tv_sec*1000 + ((tv).tv_usec + 500)/1000)
147
148 extern struct netinfo *nettab;
149 extern int status;
150 extern int trace;
151 extern int sock;
152 extern struct sockaddr_in from;
153 extern struct timeval from_when;        /* when the last msg arrived */
154 extern u_short sequence;                /* TSP message sequence number */
155 extern struct netinfo *fromnet, *slavenet;
156 extern FILE *fd;
157 extern long delay1, delay2;
158 extern int nslavenets;                  /* nets were I could be a slave */
159 extern int nmasternets;                 /* nets were I could be a master */
160 extern int nignorednets;                /* ignored nets */
161 extern int nnets;                       /* nets I am connected to */
162
163
164 #define trace_msg(msg)          {if (trace) fprintf(fd, msg);}
165
166 #define trace_sendto_err(addr) {                                        \
167         int st_errno = errno;                                           \
168         syslog(LOG_ERR, "%s %d: sendto %s: %m",                         \
169                 __FILE__, __LINE__, inet_ntoa(addr));                   \
170         if (trace)                                                      \
171                 fprintf(fd, "%s %d: sendto %s: %d", __FILE__, __LINE__, \
172                         inet_ntoa(addr), st_errno);                     \
173 }
174
175
176 # define max(a,b)       (a<b ? b : a)
177 # define min(a,b)       (a>b ? b : a)
178 # define abs(x)         (x>=0 ? x : -(x))