-
Notifications
You must be signed in to change notification settings - Fork 101
/
histogram.c
388 lines (318 loc) · 8.5 KB
/
histogram.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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
/*
* Copyright (c) 2003, 2004 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <sys/types.h>
#include <sys/param.h>
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <sys/queue.h>
#include <sys/tree.h>
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
#include <err.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <syslog.h>
#include <dnet.h>
#include <event.h>
#include "histogram.h"
#include "honeyd.h"
static struct timeval *tv_now; /* used for unittesting */
static struct timeval tv_periodic;
/*
* We update our internal time via a periodic timeout. This reduces the
* number of system calls that we need to make for gettimeofday() without
* reducing our accuracy too much.
*/
static void
count_time_evcb(int fd, short what, void *unused)
{
gettimeofday(&tv_periodic, NULL);
}
void
count_init(void)
{
/* Start a timer that keeps track of the current system time */
struct event *ev = event_new(libevent_base, -1, EV_PERSIST, count_time_evcb, NULL);
struct timeval tv;
timerclear(&tv);
tv.tv_sec = 1;
evtimer_add(ev, &tv);
}
void
count_set_time(struct timeval *tv)
{
tv_now = tv;
}
void
count_get_time(struct timeval *tv)
{
if (tv_now == NULL)
*tv = tv_periodic;
else
*tv = *tv_now;
}
struct count *
count_new(void)
{
struct count *count;
if ((count = calloc(1, sizeof(struct count))) == NULL)
{
syslog(LOG_ERR, "%s: calloc, failed to allocate count", __func__);
exit(EXIT_FAILURE);
}
count_get_time(&count->tv_seconds);
count->tv_seconds.tv_usec = 0;
count->tv_minutes = count->tv_seconds;
count->tv_hours = count->tv_seconds;
TAILQ_INIT(&count->seconds);
TAILQ_INIT(&count->minutes);
TAILQ_INIT(&count->hours);
return (count);
}
void
count_entry_free(struct entryq *entries)
{
struct entry *entry;
for (entry = TAILQ_FIRST(entries);
entry != NULL;
entry = TAILQ_FIRST(entries)) {
TAILQ_REMOVE(entries, entry, next);
free(entry);
}
}
void
count_free(struct count *count)
{
count_entry_free(&count->seconds);
count_entry_free(&count->minutes);
count_entry_free(&count->hours);
}
void
count_move_entries(struct entryq *current, struct entryq *future,
int incr, int max)
{
struct entry *entry, *next;
assert(incr >= 0);
if (!incr)
return;
for (entry = TAILQ_FIRST(current); entry != NULL; entry = next) {
next = TAILQ_NEXT(entry, next);
entry->age += incr;
/*
* If we are over the max then we need to move it to
* the next state.
*/
if (entry->age >= max) {
TAILQ_REMOVE(current, entry, next);
entry->age = 0;
/* Merge with the first entry if possible */
if (future != NULL) {
struct entry *tmp = TAILQ_FIRST(future);
if (tmp != NULL && tmp->age == 0) {
tmp->count += entry->count;
free(entry);
} else {
TAILQ_INSERT_HEAD(future, entry, next);
}
} else {
/* Drop if it is too old for us to bother */
free(entry);
}
}
}
}
void
count_internal_increment(struct count *count, struct timeval *tv, int delta)
{
struct timeval diff;
struct entry *entry;
/* Adjust the second buckets */
timersub(tv, &count->tv_seconds, &diff);
assert(diff.tv_sec >= 0);
count_move_entries(&count->seconds, &count->minutes, diff.tv_sec, 60);
/* Update the processing time */
count->tv_seconds.tv_sec = tv->tv_sec;
/* Adjust the minute buckets */
timersub(tv, &count->tv_minutes, &diff);
assert(diff.tv_sec >= 0);
count_move_entries(&count->minutes, &count->hours,
diff.tv_sec / 60, 60);
/* Update the minutes processing time without loosing precision */
count->tv_minutes.tv_sec = tv->tv_sec - (diff.tv_sec % 60);
/* Adjust the hour buckets */
timersub(tv, &count->tv_hours, &diff);
assert(diff.tv_sec >= 0);
count_move_entries(&count->hours, NULL, diff.tv_sec / (60*60), 24);
/* Update the hours processing time */
count->tv_hours.tv_sec = tv->tv_sec - (diff.tv_sec % (60*60));
/* We might have been called to just update the statistics */
if (delta == 0)
return;
entry = TAILQ_FIRST(&count->seconds);
if (entry != NULL && entry->age == 0) {
entry->count += delta;
} else {
if ((entry = calloc(1, sizeof(struct entry))) == NULL)
{
syslog(LOG_ERR, "%s: calloc failed to allocate entry", __func__);
exit(EXIT_FAILURE);
}
entry->count = delta;
TAILQ_INSERT_HEAD(&count->seconds, entry, next);
}
}
void
count_increment(struct count *count, int delta)
{
struct timeval *ptv = tv_now;
if (ptv == NULL)
ptv = &tv_periodic;
// XXX timeseries_update(ptv);
count_internal_increment(count, ptv, delta);
}
static void __inline
count_internal_print(FILE *fout, struct count *count, char *name)
{
struct entry *entry;
int minutes = 0;
int hours = 0;
int day = 0;
TAILQ_FOREACH(entry, &count->seconds, next)
minutes += entry->count;
TAILQ_FOREACH(entry, &count->minutes, next)
hours += entry->count;
TAILQ_FOREACH(entry, &count->hours, next)
day += entry->count;
fprintf(stderr, "%s: %6d %6d %6d\n", name, minutes, hours, day);
}
void
count_print(FILE *fout, struct count *count, char *name)
{
/* Update the statistics */
count_increment(count, 0);
count_internal_print(fout, count, name);
}
uint32_t
count_get_sum(struct entryq *entries)
{
struct entry *entry;
uint32_t sum = 0;
TAILQ_FOREACH(entry, entries, next)
sum += entry->count;
return (sum);
}
uint32_t
count_get_minute(struct count *count)
{
count_increment(count, 0);
return (count_get_sum(&count->seconds));
}
uint32_t
count_get_hour(struct count *count)
{
count_increment(count, 0);
return (count_get_sum(&count->minutes));
}
uint32_t
count_get_day(struct count *count)
{
count_increment(count, 0);
return (count_get_sum(&count->hours));
}
void
count_test(void)
{
struct count *count = count_new();
struct timeval tv;
int i;
gettimeofday(&tv, NULL);
count_internal_increment(count, &tv, 3);
if (count_get_sum(&count->seconds) != 3)
{
syslog(LOG_ERR,"second count should be 1");
exit(EXIT_FAILURE);
}
tv.tv_sec += 61;
count_internal_increment(count, &tv, 2);
count_internal_increment(count, &tv, 0);
if (count_get_sum(&count->seconds) != 2)
{
syslog(LOG_ERR,"second count should be 1");
exit(EXIT_FAILURE);
}
if (count_get_sum(&count->minutes) != 3)
{
syslog(LOG_ERR,"minute count should be 1");
exit(EXIT_FAILURE);
}
tv.tv_sec += 3540;
count_internal_increment(count, &tv, 1);
if (count_get_sum(&count->seconds) != 1)
{
syslog(LOG_ERR,"second coutn should be 1");
exit(EXIT_FAILURE);
}
if (count_get_sum(&count->minutes) != 2)
{
syslog(LOG_ERR,"minute count should be 1");
exit(EXIT_FAILURE);
}
if (count_get_sum(&count->hours) != 3)
{
syslog(LOG_ERR,"hour count should be 1");
exit(EXIT_FAILURE);
}
count_internal_print(stderr, count, "test-count");
for (i = 0; i < 24; i++) {
tv.tv_sec += 3600;
count_internal_increment(count, &tv, 0);
}
count_internal_print(stderr, count, "test-count");
if (count_get_sum(&count->seconds) ||
count_get_sum(&count->minutes) ||
count_get_sum(&count->hours))
{
syslog(LOG_ERR,"Decompressed failed");
exit(EXIT_FAILURE);
}
fprintf(stderr, "\t%s: OK\n", __func__);
}
/* Unittest related functionality */
void
histogram_test(void)
{
count_test();
}