-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathsocket.c
252 lines (189 loc) · 4.78 KB
/
socket.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
/*
ISC License
Copyright (c) 2016-2017, Jo-Philipp Wich <[email protected]>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
*/
#include <stdio.h>
#include <errno.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <sys/socket.h>
#include <libubox/uloop.h>
#include <libubox/usock.h>
#include "socket.h"
#include "database.h"
#include "timing.h"
#include "nlbwmon.h"
struct command {
const char *cmd;
int (*cb)(int sock, const char *arg);
};
static int ctrl_socket;
static struct uloop_fd sock_fd = { };
static struct uloop_timeout sock_tm = { };
static ssize_t
send_data(int sock, const void *buf, size_t len)
{
ssize_t rv, sent = 0;
while (len) {
rv = send(sock, buf + sent, len, 0);
if (rv == -1 && errno == EAGAIN)
continue;
if (rv <= 0)
return rv;
len -= rv;
sent += rv;
}
return sent;
}
static int
handle_dump(int sock, const char *arg)
{
struct dbhandle *h;
struct record *rec = NULL;
int err = 0, timestamp = 0;
char *e;
if (arg) {
timestamp = strtoul(arg, &e, 10);
if (arg == e || *e)
return -EINVAL;
}
if (timestamp == 0) {
h = gdbh;
}
else {
h = database_init(&opt.archive_interval, false, 0);
if (!h) {
err = ENOMEM;
goto out;
}
err = database_load(h, opt.db.directory, timestamp);
if (err)
goto out;
}
if (send_data(sock, h->db, sizeof(*h->db)) != sizeof(*h->db)) {
err = errno;
goto out;
}
while ((rec = database_next(h, rec)) != NULL)
if (send_data(sock, rec, db_recsize) != db_recsize) {
err = errno;
goto out;
}
out:
if (h != gdbh)
database_free(h);
return -err;
}
static int
handle_list(int sock, const char *arg)
{
int err;
int delta = 0;
uint32_t timestamp;
while (true) {
timestamp = interval_timestamp(&opt.archive_interval, delta--);
err = database_load(NULL, opt.db.directory, timestamp);
if (err) {
if (-err != ENOENT)
fprintf(stderr, "Corrupted database detected: %d (%s)\n",
timestamp, strerror(-err));
break;
}
if (send(sock, ×tamp, sizeof(timestamp), 0) != sizeof(timestamp))
return -errno;
}
return 0;
}
static int
handle_commit(int sock, const char *arg)
{
uint32_t timestamp = interval_timestamp(&opt.archive_interval, 0);
char buf[128];
int err, len;
err = database_save(gdbh, opt.db.directory, timestamp, opt.db.compress);
len = snprintf(buf, sizeof(buf), "%d %s", -err,
err ? strerror(-err) : "ok");
if (send_data(sock, buf, len) != len)
return -errno;
return 0;
}
static struct command commands[] = {
{ "dump", handle_dump },
{ "list", handle_list },
{ "commit", handle_commit },
};
static void
handle_client_accept(struct uloop_fd *ufd, unsigned int ev);
static void
handle_client_timeout(struct uloop_timeout *tm)
{
uloop_timeout_cancel(&sock_tm);
uloop_fd_delete(&sock_fd);
close(sock_fd.fd);
sock_fd.cb = handle_client_accept;
sock_fd.fd = ctrl_socket;
uloop_fd_add(&sock_fd, ULOOP_READ);
}
static void
handle_client_request(struct uloop_fd *ufd, unsigned int ev)
{
char *cmd, *arg, buf[32] = { };
size_t len;
int i, err;
len = recv(ufd->fd, buf, sizeof(buf) - 1, 0);
if (len > 0) {
cmd = strtok(buf, " \t\n");
arg = strtok(NULL, " \t\n");
for (i = 0; i < sizeof(commands) / sizeof(commands[0]); i++)
if (!strcmp(commands[i].cmd, cmd)) {
err = commands[i].cb(ufd->fd, arg);
if (err) {
fprintf(stderr, "Unable to handle '%s' command: %s\n",
buf, strerror(-err));
}
}
}
handle_client_timeout(&sock_tm);
}
static void
handle_client_accept(struct uloop_fd *ufd, unsigned int ev)
{
int fd;
fd = accept(ufd->fd, NULL, NULL);
if (fd < 0)
return;
uloop_fd_delete(ufd);
ufd->cb = handle_client_request;
ufd->fd = fd;
uloop_fd_add(ufd, ULOOP_READ);
sock_tm.cb = handle_client_timeout;
uloop_timeout_set(&sock_tm, 100);
}
int
socket_init(const char *path)
{
struct stat s;
if (!stat(path, &s) && S_ISSOCK(s.st_mode)) {
if (unlink(path))
return -errno;
}
ctrl_socket = usock(USOCK_UNIX|USOCK_SERVER, path, NULL);
if (ctrl_socket < 0)
return -errno;
sock_fd.fd = ctrl_socket;
sock_fd.cb = handle_client_accept;
uloop_fd_add(&sock_fd, ULOOP_READ);
return 0;
}