-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathserver_stat.c
203 lines (185 loc) · 5.47 KB
/
server_stat.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
/*
* soliloque-server, an open source implementation of the TeamSpeak protocol.
* Copyright (C) 2009 Hugo Camboulive <hugo.camboulive AT gmail.com>
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/
#include "server_stat.h"
#include "server.h"
#include "server_stat.h"
#include "log.h"
#include "compat.h"
#include "queue.h"
#include <sys/types.h>
#include <sys/socket.h>
#include <stdint.h>
#include <stdlib.h>
#include <strings.h>
#include <time.h>
#include <sys/time.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
/**
* Wrapper around the sendto function that handles timed statistics
*
* @param s the server
* @param buf the data
* @param len the length of buf
* @param flags sendto flags (see man(2) sendto)
* @param dest_addr the destination address
* @param addrlen the length of dest_addr
*
* @return the number of characters sent, or -1
*/
ssize_t send_to(struct server *s, const void *buf, size_t len, int flags,
struct player *pl)
{
char *buf_copy = (char *)calloc(len, sizeof(char));
logger(LOG_INFO, "Adding to queue packet type 0x%x", *(uint32_t *)buf);
memcpy(buf_copy, buf, len);
add_to_queue(pl->packets, buf_copy, len);
return len;
}
void destroy_sstat(struct server_stat *st)
{
free(st->pkt_sizes);
free(st->pkt_timestamps);
free(st->pkt_io);
free(st);
}
/**
* Allocate and initializes a server statistics structure.
*
* @return the allocated statistics
*/
struct server_stat *new_sstat()
{
struct server_stat *st;
st = (struct server_stat *)calloc(1, sizeof(struct server_stat));
if (st == NULL) {
logger(LOG_WARN, "new_sstat, calloc of st failed : %s.", strerror(errno));
return NULL;
}
st->pkt_max = 10000;
st->pkt_sizes = (size_t *)calloc(st->pkt_max, sizeof(size_t));
st->pkt_timestamps = (struct timeval *)calloc(st->pkt_max, sizeof(struct timeval));
st->pkt_io = (char *)calloc(st->pkt_max, sizeof(char));
st->start_time = time(NULL);
if (st->pkt_sizes == NULL || st->pkt_timestamps == NULL || st->pkt_io == NULL) {
logger(LOG_WARN, "new_sstat, calloc failed : %s.", strerror(errno));
if (st->pkt_sizes != NULL)
free(st->pkt_sizes);
if (st->pkt_timestamps != NULL)
free(st->pkt_timestamps);
if (st->pkt_io != NULL)
free(st->pkt_io);
free(st);
return NULL;
}
return st;
}
/**
* Add a packet to the statistics :
* - add its size to the total size
* - increment the counter
* - insert it into the timed statistics
*
* @param st the server statistics
* @param size the size of the packet
* @param in_out 0 if input packet, 1 if output packet
*/
void sstat_add_packet(struct server_stat *st, size_t size, char in_out)
{
struct timeval now, res;
size_t *tmp_sizes;
char *tmp_io;
struct timeval *tmp_timestamps;
int i;
if (in_out == 1) {
st->pkt_sent++;
st->size_sent += size;
} else if (in_out == 0) {
st->pkt_rec++;
st->size_rec += size;
}
gettimeofday(&now, NULL);
/* Insert in the table if possible */
for (i = 0 ; i < st->pkt_max ; i++) {
timersub(&now, &st->pkt_timestamps[i], &res);
if (st->pkt_sizes[i] == 0 || res.tv_sec > 60) {
st->pkt_sizes[i] = size;
gettimeofday(&st->pkt_timestamps[i], NULL);
st->pkt_io[i] = in_out;
return;
}
}
st->pkt_max *= 2;
/* reallocate and clean */
tmp_sizes = (size_t *)realloc(st->pkt_sizes, sizeof(size_t) * st->pkt_max);
if (tmp_sizes == NULL) {
logger(LOG_WARN, "sstat_add_packet, pkt_sizes realloc failed : %s.", strerror(errno));
st->pkt_max /= 2; /* restore the old size */
return;
}
st->pkt_sizes = tmp_sizes;
bzero(st->pkt_sizes + (st->pkt_max / 2), sizeof(size_t) * st->pkt_max / 2); /* realloc does not set to zero! */
/* reallocate */
tmp_timestamps = (struct timeval *)realloc(st->pkt_timestamps, sizeof(struct timeval) * st->pkt_max);
if (tmp_timestamps == NULL) {
logger(LOG_WARN, "sstat_add_packet, pkt_timestamps realloc failed : %s.", strerror(errno));
st->pkt_max /= 2;
return;
}
st->pkt_timestamps = tmp_timestamps;
tmp_io = (char *)realloc(st->pkt_io, sizeof(char) * st->pkt_max);
if (tmp_io == NULL) {
logger(LOG_WARN, "sstat_add_packet, pkt_io realloc failed : %s.", strerror(errno));
st->pkt_max /= 2;
return;
}
st->pkt_io = tmp_io;
/* insert */
st->pkt_sizes[(st->pkt_max / 2) + 1] = size;
gettimeofday(&st->pkt_timestamps[(st->pkt_max / 2) + 1], NULL);
st->pkt_io[i] = in_out;
}
/**
* Compute time relative statistics (bytes/sec or bytes/min)
*
* @param st the server statistics
* @param stats the results
*/
void compute_timed_stats(struct server_stat *st, uint32_t *stats)
{
struct timeval now, res;
int i;
gettimeofday(&now, NULL);
/* res[0] = Rx / sec
* res[1] = Tx / sec
* res[2] = Rx / min
* res[3] = Tx / sec */
for (i = 0 ; i < st->pkt_max ; i++) {
timersub(&now, &st->pkt_timestamps[i], &res);
if (res.tv_sec < 60) {
stats[2 + st->pkt_io[i]] += st->pkt_sizes[i];
if (res.tv_sec < 1) {
stats[0 + st->pkt_io[i]] += st->pkt_sizes[i];
}
} else {
/* clear */
st->pkt_sizes[i] = 0;
}
}
}