forked from bsdphk/Ntimed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ntp_peerset.c
314 lines (263 loc) · 8.35 KB
/
ntp_peerset.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
/*-
* Copyright (c) 2014 Poul-Henning Kamp
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* A peer-set is the total set of NTP servers we keep track of.
*
* The set is composed of groups, each of which is all the IP# we
* get from resolving a single argument.
*
* Within each group we poll a maximum of one ${param} servers,
* picking the best.
*
* Across the set we keep an hairy eyeball for servers appearing
* more than once, because it would deceive our quorum. Spotting
* the same IP# is trivial, multihomed servers can be spotted on
* {stratum,refid,reftime} triplet.
*
*/
#include <math.h>
#include <stdlib.h>
#include <string.h>
#include <netdb.h>
#include <sys/socket.h>
#include "ntimed.h"
#include "ntp.h"
struct ntp_group {
unsigned magic;
#define NTP_GROUP_MAGIC 0xdd5f58de
TAILQ_ENTRY(ntp_group) list;
char *hostname;
int npeer;
};
struct ntp_peerset {
unsigned magic;
#define NTP_PEERSET_MAGIC 0x0bf873d0
TAILQ_HEAD(,ntp_peer) head;
int npeer;
TAILQ_HEAD(,ntp_group) group;
int ngroup;
struct udp_socket *usc;
double t0;
double init_duration;
double poll_period;
double init_packets;
};
/**********************************************************************/
struct ntp_peerset *
NTP_PeerSet_New(struct ocx *ocx)
{
struct ntp_peerset *nps;
(void)ocx;
ALLOC_OBJ(nps, NTP_PEERSET_MAGIC);
AN(nps);
TAILQ_INIT(&nps->head);
TAILQ_INIT(&nps->group);
return (nps);
}
/**********************************************************************
* Iterator helpers
*/
struct ntp_peer *
NTP_PeerSet_Iter0(const struct ntp_peerset *nps)
{
CHECK_OBJ_NOTNULL(nps, NTP_PEERSET_MAGIC);
return (TAILQ_FIRST(&nps->head));
}
struct ntp_peer *
NTP_PeerSet_IterN(const struct ntp_peerset *nps, const struct ntp_peer *np)
{
CHECK_OBJ_NOTNULL(nps, NTP_PEERSET_MAGIC);
CHECK_OBJ_NOTNULL(np, NTP_PEER_MAGIC);
return (TAILQ_NEXT(np, list));
}
/**********************************************************************/
static int
ntp_peerset_fillgroup(struct ocx *ocx, struct ntp_peerset *nps,
struct ntp_group *ng, const char *lookup)
{
struct addrinfo hints, *res, *res0;
int error, n = 0;
struct ntp_peer *np, *np2;
CHECK_OBJ_NOTNULL(nps, NTP_PEERSET_MAGIC);
CHECK_OBJ_NOTNULL(ng, NTP_GROUP_MAGIC);
memset(&hints, 0, sizeof hints);
hints.ai_family = PF_UNSPEC;
hints.ai_socktype = SOCK_DGRAM;
error = getaddrinfo(lookup, "ntp", &hints, &res0);
if (error)
Fail(ocx, 1, "hostname '%s', port 'ntp': %s\n",
lookup, gai_strerror(error));
for (res = res0; res; res = res->ai_next) {
if (res->ai_family != AF_INET && res->ai_family != AF_INET6)
continue;
np = NTP_Peer_New(ng->hostname, res->ai_addr, res->ai_addrlen);
AN(np);
TAILQ_FOREACH(np2, &nps->head, list)
if (SA_Equal(np->sa, np->sa_len, np2->sa, np2->sa_len))
break;
if (np2 != NULL) {
/* All duplicates point to the same "master" */
np->state = NTP_STATE_DUPLICATE;
np->other = np2->other;
if (np->other == NULL)
np->other = np2;
TAILQ_INSERT_TAIL(&nps->head, np, list);
Debug(ocx, "Peer {%s %s} is duplicate of {%s %s}\n",
np->hostname, np->ip, np2->hostname, np2->ip);
} else {
np->state = NTP_STATE_NEW;
TAILQ_INSERT_HEAD(&nps->head, np, list);
}
nps->npeer++;
np->group = ng;
ng->npeer++;
n++;
}
freeaddrinfo(res0);
return (n);
}
/**********************************************************************/
static struct ntp_group *
ntp_peerset_add_group(struct ntp_peerset *nps, const char *name)
{
struct ntp_group *ng;
ALLOC_OBJ(ng, NTP_GROUP_MAGIC);
AN(ng);
ng->hostname = strdup(name);
AN(ng->hostname);
TAILQ_INSERT_TAIL(&nps->group, ng, list);
nps->ngroup++;
return (ng);
}
/**********************************************************************
* Add a peer with a specific hostname+ip combination without actually
* resolving the hostname.
*/
void
NTP_PeerSet_AddSim(struct ocx *ocx, struct ntp_peerset *nps,
const char *hostname, const char *ip)
{
struct ntp_group *ng;
CHECK_OBJ_NOTNULL(nps, NTP_PEERSET_MAGIC);
TAILQ_FOREACH(ng, &nps->group, list)
if (!strcasecmp(ng->hostname, hostname))
break;
if (ng == NULL)
ng = ntp_peerset_add_group(nps, hostname);
assert(ntp_peerset_fillgroup(ocx, nps, ng, ip) == 1);
}
/**********************************************************************
* Create a new group and add whatever peers its hostname resolves to
*/
int
NTP_PeerSet_Add(struct ocx *ocx, struct ntp_peerset *nps, const char *hostname)
{
struct ntp_group *ng;
CHECK_OBJ_NOTNULL(nps, NTP_PEERSET_MAGIC);
TAILQ_FOREACH(ng, &nps->group, list)
if (!strcasecmp(ng->hostname, hostname))
Fail(ocx, 0, "hostname %s is duplicated\n", hostname);
ng = ntp_peerset_add_group(nps, hostname);
if (ntp_peerset_fillgroup(ocx, nps, ng, hostname) == 0)
Fail(ocx, 0, "hostname %s no IP# found.\n", hostname);
return (ng->npeer);
}
/**********************************************************************
* This function is responsible for polling the peers in the set.
*/
static enum todo_e __match_proto__(todo_f)
ntp_peerset_poll(struct ocx *ocx, struct todolist *tdl, void *priv)
{
struct ntp_peerset *nps;
struct ntp_peer *np;
double d, dt;
(void)ocx;
CAST_OBJ_NOTNULL(nps, priv, NTP_PEERSET_MAGIC);
AN(tdl);
np = TAILQ_FIRST(&nps->head);
if (np == NULL)
return(TODO_DONE);
CHECK_OBJ_NOTNULL(np, NTP_PEER_MAGIC);
TAILQ_REMOVE(&nps->head, np, list);
TAILQ_INSERT_TAIL(&nps->head, np, list);
d = nps->poll_period / nps->npeer;
if (nps->t0 < nps->init_duration) {
dt = exp(
log(nps->init_duration) / (nps->init_packets * nps->npeer));
if (nps->t0 * dt < nps->init_duration)
d = nps->t0 * dt - nps->t0;
}
nps->t0 += d;
TODO_ScheduleRel(tdl, ntp_peerset_poll, nps, d, 0.0, "NTP_PeerSet");
if (NTP_Peer_Poll(ocx, nps->usc, np, 0.8)) {
if (np->filter_func != NULL)
np->filter_func(ocx, np);
}
return (TODO_OK);
}
/**********************************************************************
* This function will be responsible for maintaining the peers in the set
*
* XXX: Pick only the best N (3?) servers from any hostname as active.
* XXX: Re-lookup hostnames on periodic basis to keep the set current
* XXX: Implement (a future) pool.ntp.org load-balancing protocol
*/
static enum todo_e
ntp_peerset_herd(struct ocx *ocx, struct todolist *tdl, void *priv)
{
(void)ocx;
(void)tdl;
(void)priv;
return (TODO_DONE);
}
/**********************************************************************/
static uintptr_t poll_hdl;
static uintptr_t herd_hdl;
void
NTP_PeerSet_Poll(struct ocx *ocx, struct ntp_peerset *nps,
struct udp_socket *usc,
struct todolist *tdl)
{
struct ntp_peer *np;
(void)ocx;
CHECK_OBJ_NOTNULL(nps, NTP_PEERSET_MAGIC);
AN(usc);
AN(tdl);
TAILQ_FOREACH(np, &nps->head, list)
np->state = NTP_STATE_NEW;
nps->usc = usc;
nps->t0 = 1.0;
nps->init_duration = 64.;
nps->init_packets = 6.;
nps->poll_period = 64.;
if (poll_hdl != 0)
TODO_Cancel(tdl, &poll_hdl);
poll_hdl = TODO_ScheduleRel(tdl, ntp_peerset_poll, nps, 0.0, 0.0,
"NTP_PeerSet Poll");
if (herd_hdl != 0)
TODO_Cancel(tdl, &herd_hdl);
herd_hdl = TODO_ScheduleRel(tdl, ntp_peerset_herd, nps,
15. * 60. / nps->ngroup, 0.0, "NTP_PeerSet Herd");
}