forked from bsdphk/Ntimed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathntp_peerset.c
237 lines (200 loc) · 5.99 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
/*-
* 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.
*
*/
#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;
int fd;
double t0;
double init_duration;
double poll_period;
double init_packets;
};
/**********************************************************************/
struct ntp_peerset *
NTP_PeerSet_New(struct ocx *ocx)
{
struct ntp_peerset *npl;
(void)ocx;
ALLOC_OBJ(npl, NTP_PEERSET_MAGIC);
AN(npl);
TAILQ_INIT(&npl->head);
TAILQ_INIT(&npl->group);
return (npl);
}
/**********************************************************************
* Iterator helpers
*/
struct ntp_peer *
NTP_PeerSet_Iter0(const struct ntp_peerset *npl)
{
CHECK_OBJ_NOTNULL(npl, NTP_PEERSET_MAGIC);
return (TAILQ_FIRST(&npl->head));
}
struct ntp_peer *
NTP_PeerSet_IterN(const struct ntp_peerset *npl, const struct ntp_peer *np)
{
CHECK_OBJ_NOTNULL(npl, NTP_PEERSET_MAGIC);
CHECK_OBJ_NOTNULL(np, NTP_PEER_MAGIC);
return (TAILQ_NEXT(np, list));
}
/**********************************************************************/
void
NTP_PeerSet_AddPeer(struct ocx *ocx, struct ntp_peerset *npl,
struct ntp_peer *np)
{
(void)ocx;
CHECK_OBJ_NOTNULL(npl, NTP_PEERSET_MAGIC);
CHECK_OBJ_NOTNULL(np, NTP_PEER_MAGIC);
TAILQ_INSERT_TAIL(&npl->head, np, list);
npl->npeer++;
}
/**********************************************************************/
int
NTP_PeerSet_Add(struct ocx *ocx, struct ntp_peerset *npl,
const char *hostname)
{
struct addrinfo hints, *res, *res0;
int error, n;
struct ntp_peer *np;
struct ntp_group *ng;
CHECK_OBJ_NOTNULL(npl, NTP_PEERSET_MAGIC);
memset(&hints, 0, sizeof hints);
hints.ai_family = PF_UNSPEC;
hints.ai_socktype = SOCK_DGRAM;
error = getaddrinfo(hostname, "ntp", &hints, &res0);
if (error)
Fail(ocx, 1, "hostname '%s', port 'ntp': %s\n",
hostname, gai_strerror(error));
ALLOC_OBJ(ng, NTP_GROUP_MAGIC);
AN(ng);
n = 0;
for (res = res0; res; res = res->ai_next) {
np = NTP_Peer_New(hostname, res->ai_addr, res->ai_addrlen);
// XXX: duplicate check
TAILQ_INSERT_TAIL(&npl->head, np, list);
npl->npeer++;
np->group = ng;
ng->npeer++;
n++;
}
freeaddrinfo(res0);
if (ng->npeer == 0) {
FREE_OBJ(ng);
} else {
ng->hostname = strdup(hostname);
AN(ng->hostname);
TAILQ_INSERT_TAIL(&npl->group, ng, list);
npl->ngroup++;
}
return (n);
}
/**********************************************************************
* This function is responsible for polling the peers in the set.
*/
static enum todo_e
ntp_peerset_poll(struct ocx *ocx, struct todolist *tdl, void *priv)
{
struct ntp_peerset *npl;
struct ntp_peer *np;
double d, dt;
(void)ocx;
CAST_OBJ_NOTNULL(npl, priv, NTP_PEERSET_MAGIC);
AN(tdl);
np = TAILQ_FIRST(&npl->head);
if (np == NULL)
return(TODO_DONE);
CHECK_OBJ_NOTNULL(np, NTP_PEER_MAGIC);
TAILQ_REMOVE(&npl->head, np, list);
TAILQ_INSERT_TAIL(&npl->head, np, list);
d = npl->poll_period / npl->npeer;
if (npl->t0 < npl->init_duration) {
dt = exp(
log(npl->init_duration) / (npl->init_packets * npl->npeer));
if (npl->t0 * dt < npl->init_duration)
d = npl->t0 * dt - npl->t0;
}
npl->t0 += d;
TODO_ScheduleRel(tdl, ntp_peerset_poll, npl, d, 0.0, "NTP_PeerSet");
if (NTP_Peer_Poll(ocx, npl->fd, 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);
}
/**********************************************************************/
void
NTP_PeerSet_Poll(struct ocx *ocx, struct ntp_peerset *npl, int fd,
struct todolist *tdl)
{
(void)ocx;
CHECK_OBJ_NOTNULL(npl, NTP_PEERSET_MAGIC);
assert(fd >= 0);
AN(tdl);
npl->fd = fd;
npl->t0 = 1.0;
npl->init_duration = 64.;
npl->init_packets = 6.;
npl->poll_period = 64.;
TODO_ScheduleRel(tdl, ntp_peerset_poll, npl, 0.0, 0.0,
"NTP_PeerSet Poll");
if (npl->ngroup > 0)
TODO_ScheduleRel(tdl, ntp_peerset_herd, npl,
15. * 60. / npl->ngroup, 0.0, "NTP_PeerSet Herd");
}