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
|
/*
* Copyright (c) 2005, Nate Nielsen
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above
* copyright notice, this list of conditions and the
* following disclaimer.
* * 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.
* * The names of contributors to this software may not be
* used to endorse or promote products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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 THE
* COPYRIGHT OWNER 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.
*
*
* CONTRIBUTORS
* Nate Nielsen <nielsen@memberwebs.com>
*
*/
#include "usuals.h"
#include <errno.h>
#include <unistd.h>
#include <stdarg.h>
#include <syslog.h>
#include <dirent.h>
/* TODO: Abstract these headers away nicely */
#include <bsnmp/asn1.h>
#include <bsnmp/snmp.h>
#include "stringx.h"
#include "rrdbotd.h"
/* TODO: Temporary */
#include "snmpclient.h"
/* -----------------------------------------------------------------------------
* GLOBALS
*/
/* TODO: These should be set from the command line */
static int daemonized = 0;
static int debug_level = 7;
/* -----------------------------------------------------------------------------
* TESTS
*/
#define OIDX_ifInOctets { 11, { 1, 3, 6, 1, 2, 1, 2, 2, 1, 10, 2, } }
struct asn_oid ifInOctens = OIDX_ifInOctets;
static void
test_bsnmpd()
{
struct snmp_pdu pdu, resp;
int n;
snmp_client_init(&snmp_client);
snmp_client.trans = SNMP_TRANS_UDP;
snmp_open("northstar-link.ws.local", NULL, "wsnettle", "public");
snmp_pdu_create(&pdu, SNMP_PDU_GET);
n = snmp_add_binding(&pdu, &ifInOctens, SNMP_SYNTAX_COUNTER, NULL);
if (snmp_dialog(&pdu, &resp))
errx(1, "No response from '%s': %s", snmp_client.chost, snmp_client.error);
if (snmp_pdu_check(&pdu, &resp) <= 0)
errx(1, "Error reading from server: %s", snmp_client.error);
snmp_pdu_dump(&resp);
printf("done\n");
}
/* -----------------------------------------------------------------------------
* CONFIG FILES
*/
static char*
read_config_file(const char* configfile)
{
char* config = NULL;
FILE* f = NULL;
long len;
ASSERT(configfile);
f = fopen(configfile, "r");
if(f == NULL)
err(1, "couldn't open config file: %s", configfile);
/* Figure out size */
if(fseek(f, 0, SEEK_END) == -1 || (len = ftell(f)) == -1 || fseek(f, 0, SEEK_SET) == -1)
err(1, "couldn't seek config file: %s", configfile);
if((config = (char*)malloc(len + 2)) == NULL)
errx(1, "out of memory");
/* And read in one block */
if(fread(config, 1, len, f) != len)
err(1, "couldn't read config file: %s", configfile);
fclose(f);
/* Null terminate the data */
config[len] = '\n';
config[len + 1] = 0;
/* Remove nasty dos line endings */
remove_cr(config);
rb_messagex(LOG_DEBUG, "read config file: %s", configfile);
return config;
}
static void
parse_config_file(const char* configfile)
{
char* name = NULL;
char* value = NULL;
char* config;
char* next;
char* header;
char* p;
char* t;
int pos;
config = read_config_file(configfile);
next = config;
/* Go through lines and process them */
while((t = strchr(next, '\n')) != NULL)
{
*t = 0;
p = next; /* Do this before cleaning below */
next = t + 1;
t = trim_start(p);
/* Continuation line (had spaces at start) */
if(p < t && *t)
{
if(!value)
errx(2, "invalid continuation in config: %s", p);
/* Calculate the end of the current value */
t = value + strlen(value);
ASSERT(t < p);
/* Continuations are separated by spaces */
*t = ' ';
t++;
continue;
}
// No continuation hand off value if necessary
if(name && value)
{
rb_messagex(LOG_DEBUG, "parsed configuration value: [%s] %s = %s", header, name, value);
// TODO: Hand off pairs here
}
name = NULL;
value = NULL;
/* Empty lines / comments at start / comments without continuation */
if(!*t || *p == '#')
continue;
/* A header */
if(*p == '[')
{
t = p + strcspn(p, "]");
if(!*t || t == p + 1)
errx(2, "invalid config header: %s", p);
*t = 0;
header = trim_space(p + 1);
continue;
}
/* Look for the break between name = value on the same line */
t = p + strcspn(p, ":=");
if(!*t)
errx(2, "invalid config line: %s", p);
/* Null terminate and split value part */
*t = 0;
t++;
name = trim_space(p);
value = trim_space(t);
}
if(name && value)
{
rb_messagex(LOG_DEBUG, "parsed configuration value: %s = %s", name, value);
// TODO: Hand off pairs here
}
// TODO: Eventually no freeing
free(config);
}
static void
parse_config_dir(const char* confdir)
{
char olddir[MAXPATHLEN];
char configfile[MAXPATHLEN];
DIR* top;
struct dirent* tope;
DIR* dir;
struct dirent* dire;
/* Get the current directory */
if(!getcwd(olddir, MAXPATHLEN))
*olddir = 0;
if(chdir(confdir) == -1 ||
(top = opendir(".")) == NULL)
err("couldn't read config directory: %s", confdir);
while((tope = readdir(top)) != NULL)
{
/* Only go through the category directories */
if(!(tope->d_type & DT_DIR))
continue;
/* None of these dumb dots */
if(strcmp(tope->d_name, ".") == 0 ||
strcmp(tope->d_name, "..") == 0)
continue;
dir = opendir(tope->d_name);
if(!dir)
err("couldn't read config directory: %s/%s", confdir, tope->d_name);
while((dire = readdir(dir)) != NULL)
{
if(dire->d_type != DT_REG && dire->d_type != DT_LNK)
continue;
/* Build a happy path name */
snprintf(configfile, MAXPATHLEN, "%s/%s/%s", confdir, tope->d_name, dire->d_name);
configfile[MAXPATHLEN - 1] = 0;
parse_config_file(configfile);
}
closedir(dir);
}
closedir(top);
/* And put it back nicely */
if(*olddir)
chdir(olddir);
}
/* -----------------------------------------------------------------------------
* LOGGING
*/
static void
vmessage (int level, int err, const char* msg, va_list ap)
{
#define MAX_MSGLEN 1024
char buf[MAX_MSGLEN];
int e = errno;
if(daemonized) {
if (level >= LOG_DEBUG)
return;
} else {
if(debug_level < level)
return;
}
ASSERT (msg);
snprintf(buf, MAX_MSGLEN, "%s%s", msg, err ? ": " : "");
if(err)
strncat(buf, strerror(e), MAX_MSGLEN);
/* As a precaution */
buf[MAX_MSGLEN - 1] = 0;
/* Either to syslog or stderr */
if (daemonized)
vsyslog (level, buf, ap);
else
vwarnx (buf, ap);
}
void
rb_messagex (int level, const char* msg, ...)
{
va_list ap;
va_start(ap, msg);
vmessage(level, 0, msg, ap);
va_end(ap);
}
void
rb_message (int level, const char* msg, ...)
{
va_list ap;
va_start(ap, msg);
vmessage(level, 1, msg, ap);
va_end(ap);
}
/* -----------------------------------------------------------------------------
* STARTUP
*/
static void
usage()
{
fprintf(stderr, "usage: rrdcollectd\n");
fprintf(stderr, " rrdcollectd -v\n");
exit(2);
}
int
main(int argc, char* argv[])
{
int daemonize;
char ch;
/* Parse the arguments nicely */
while((ch = getopt(argc, argv, "v")) != -1)
{
switch(ch)
{
/* Print version number */
case 'v':
printf("rrdcollectd (version %s)\n", VERSION);
exit(0);
break;
/* Usage information */
case '?':
default:
usage();
break;
}
}
argc -= optind;
argv += optind;
parse_config_dir("/data/projects/rrdui/conf");
return 0;
}
|