forked from NETWAYS/check_interfaces
-
Notifications
You must be signed in to change notification settings - Fork 0
/
snmp_bulkget.c
535 lines (470 loc) · 14.9 KB
/
snmp_bulkget.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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
/*
*
* COPYRIGHT:
*
* This software is Copyright (c) 2011,2012 NETWAYS GmbH, William Preston
*
* (Except where explicitly superseded by other copyright notices)
*
*
* LICENSE:
*
* This work is made available to you under the terms of Version 2 of
* the GNU General Public License. A copy of that license should have
* been provided with this software, but in any event can be snarfed
* from http://www.fsf.org.
*
* This work 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., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 or visit their web page on the internet at
* http://www.fsf.org.
*
*
* CONTRIBUTION SUBMISSION POLICY:
*
* (The following paragraph is not intended to limit the rights granted
* to you to modify and distribute this software under the terms of
* the GNU General Public License and is only of importance to you if
* you choose to contribute your changes and enhancements to the
* community by submitting them to NETWAYS GmbH.)
*
* By intentionally submitting any modifications, corrections or
* derivatives to this work, or any other work intended for use with
* this Software, to NETWAYS GmbH, you confirm that
* you are the copyright holder for those contributions and you grant
* NETWAYS GmbH a nonexclusive, worldwide, irrevocable,
* royalty-free, perpetual, license to use, copy, create derivative
* works based on those contributions, and sublicense and distribute
* those contributions and any derivatives thereof.
*
*
*
*/
#include <net-snmp/net-snmp-config.h>
/* asprintf and getopt_long */
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#include <net-snmp/library/transform_oids.h>
#endif
#include <stdio.h>
#include <limits.h>
#include <stdarg.h>
#include <string.h>
#include <unistd.h>
/* getenv */
#include <stdlib.h>
/* getopt_long */
#include <getopt.h>
#include "snmp_bulkget.h"
#include "utils.h"
/* we assume that the index number is the same as the last digit of the OID
* which may not always hold true...
* but seems to do so in practice
*
* input error checking
* index parameter support
* auto-detect hardware and switch mode
* make non-posix code optional e.g. asprintf
*/
#ifdef DEBUG
static char *implode_result;
#endif
void print64(struct counter64 *count64, unsigned long *count32) {
if (!(isZeroU64(count64))) {
char buffer[I64CHARSZ + 1];
printU64(buffer, count64);
#ifdef DEBUG
printf("64:%s", buffer);
#else
printf("%s", buffer);
#endif
} else {
#ifdef DEBUG
printf("32:%lu", *count32);
#else
printf("%lu", *count32);
#endif
}
}
u64 convertto64(struct counter64 *val64, unsigned long *val32) {
u64 temp64;
if ((isZeroU64(val64))) {
if (val32)
temp64 = (u64)(*val32);
else
temp64 = 0;
} else
temp64 = ((u64)(val64->high) << 32) + val64->low;
return (temp64);
}
u64 subtract64(u64 big64, u64 small64, unsigned int lastcheck, int uptime) {
if (big64 < small64) {
/* either the device was reset or the counter overflowed
*/
if ((lastcheck + UPTIME_TOLERANCE_IN_SECS) > uptime)
/* the device was reset, or the uptime counter rolled over
* so play safe and return 0 */
return 0;
else {
/* we assume there was exactly 1 counter rollover
* - of course there may have been more than 1 if it
* is a 32 bit counter ...
*/
if (small64 > OFLO32)
return (OFLO64 - small64 + big64);
else
return (OFLO32 - small64 + big64);
}
} else
return (big64 - small64);
}
netsnmp_session *start_session(netsnmp_session *session, char *community,
char *hostname, enum mode_enum mode,
unsigned long global_timeout,
int session_retries) {
netsnmp_session *ss;
/*
* Initialize the SNMP library
*/
init_snmp("snmp_bulkget");
/* setup session to hostname */
snmp_sess_init(session);
session->peername = hostname;
/* bulk gets require V2c or later */
if (mode == NONBULK)
session->version = SNMP_VERSION_1;
else
session->version = SNMP_VERSION_2c;
session->community = (u_char *)community;
session->community_len = strlen(community);
session->timeout = global_timeout;
session->retries = session_retries;
/*
* Open the session
*/
SOCK_STARTUP;
ss = snmp_open(session); /* establish the session */
if (!ss) {
snmp_sess_perror("snmp_bulkget", session);
SOCK_CLEANUP;
exit(1);
}
return (ss);
}
netsnmp_session *start_session_v3(netsnmp_session *session, char *user,
char *auth_proto, char *auth_pass,
char *priv_proto, char *priv_pass,
char *hostname, unsigned long global_timeout,
int session_retries) {
netsnmp_session *ss;
init_snmp("snmp_bulkget");
snmp_sess_init(session);
session->peername = hostname;
session->version = SNMP_VERSION_3;
session->securityName = user;
session->securityModel = SNMP_SEC_MODEL_USM;
session->securityNameLen = strlen(user);
if (priv_proto && priv_pass) {
if (!strcmp(priv_proto, "AES")) {
session->securityPrivProto = snmp_duplicate_objid(
usmAESPrivProtocol, USM_PRIV_PROTO_AES_LEN);
session->securityPrivProtoLen = USM_PRIV_PROTO_AES_LEN;
#ifdef HAVE_USM_DES_PRIV_PROTOCOL
} else if (!strcmp(priv_proto, "DES")) {
session->securityPrivProto = snmp_duplicate_objid(
usmDESPrivProtocol, USM_PRIV_PROTO_DES_LEN);
session->securityPrivProtoLen = USM_PRIV_PROTO_DES_LEN;
#endif
} else {
printf("Unknown priv protocol %s\n", priv_proto);
exit(3);
}
session->securityLevel = SNMP_SEC_LEVEL_AUTHPRIV;
session->securityPrivKeyLen = USM_PRIV_KU_LEN;
} else {
session->securityLevel = SNMP_SEC_LEVEL_AUTHNOPRIV;
session->securityPrivKeyLen = 0;
}
if (auth_proto && auth_pass) {
if (!strcmp(auth_proto, "SHA")) {
session->securityAuthProto = snmp_duplicate_objid(
usmHMACSHA1AuthProtocol, USM_AUTH_PROTO_SHA_LEN);
session->securityAuthProtoLen = USM_AUTH_PROTO_SHA_LEN;
} else if (!strcmp(auth_proto, "SHA-224")) {
session->securityAuthProto = snmp_duplicate_objid(
usmHMAC128SHA224AuthProtocol, USM_AUTH_PROTO_SHA_LEN);
session->securityAuthProtoLen = USM_AUTH_PROTO_SHA_LEN;
} else if (!strcmp(auth_proto, "SHA-256")) {
session->securityAuthProto = snmp_duplicate_objid(
usmHMAC192SHA256AuthProtocol, USM_AUTH_PROTO_SHA_LEN);
session->securityAuthProtoLen = USM_AUTH_PROTO_SHA_LEN;
} else if (!strcmp(auth_proto, "SHA-384")) {
session->securityAuthProto = snmp_duplicate_objid(
usmHMAC256SHA384AuthProtocol, USM_AUTH_PROTO_SHA_LEN);
session->securityAuthProtoLen = USM_AUTH_PROTO_SHA_LEN;
} else if (!strcmp(auth_proto, "SHA-512")) {
session->securityAuthProto = snmp_duplicate_objid(
usmHMAC384SHA512AuthProtocol, USM_AUTH_PROTO_SHA_LEN);
session->securityAuthProtoLen = USM_AUTH_PROTO_SHA_LEN;
} else if (!strcmp(auth_proto, "MD5")) {
session->securityAuthProto = snmp_duplicate_objid(
usmHMACMD5AuthProtocol, USM_AUTH_PROTO_MD5_LEN);
session->securityAuthProtoLen = USM_AUTH_PROTO_MD5_LEN;
} else {
printf("Unknown auth protocol %s\n", auth_proto);
exit(3);
}
session->securityAuthKeyLen = USM_AUTH_KU_LEN;
} else {
session->securityLevel = SNMP_SEC_LEVEL_NOAUTH;
session->securityAuthKeyLen = 0;
session->securityPrivKeyLen = 0;
}
if ((session->securityLevel == SNMP_SEC_LEVEL_AUTHPRIV) ||
(session->securityLevel == SNMP_SEC_LEVEL_AUTHNOPRIV)) {
if (generate_Ku(session->securityAuthProto,
session->securityAuthProtoLen,
(unsigned char *)auth_pass, strlen(auth_pass),
session->securityAuthKey,
&session->securityAuthKeyLen) != SNMPERR_SUCCESS)
printf("Error generating AUTH sess\n");
if (session->securityLevel == SNMP_SEC_LEVEL_AUTHPRIV) {
if (generate_Ku(session->securityAuthProto,
session->securityAuthProtoLen,
(unsigned char *)priv_pass, strlen(priv_pass),
session->securityPrivKey,
&session->securityPrivKeyLen) != SNMPERR_SUCCESS)
printf("Error generating PRIV sess\n");
}
}
session->timeout = global_timeout;
session->retries = session_retries;
/*
* Open the session
*/
SOCK_STARTUP;
ss = snmp_open(session); /* establish the session */
if (!ss) {
snmp_sess_perror("snmp_bulkget", session);
SOCK_CLEANUP;
exit(1);
}
return (ss);
}
/*
* tokenize a string containing performance data and fill a struct with
* the individual variables
*
* e.g. interfaces::check_multi::plugins=2 time=0.07
* 11::check_snmp::inOctets=53273084427c outOctets=6370502528c inDiscards=0c
* outDiscards=3921c inErrors=3c outErrors=20165c inUcast=38550136c
* outUcast=21655535c speed=100000000 21::check_snmp::inOctets=5627677780c
* outOctets=15023959911c inDiscards=0c outDiscards=0c inErrors=0c
* outErrors=5431c inUcast=34020897c outUcast=35875426c speed=1000000000
*/
int parse_perfdata(char *oldperfdatap, struct ifStruct *oldperfdata,
char *prefix, unsigned int *parsed_lastcheck,
int ifNumber,
char *perfdata_labels[]) {
char *last = 0, *last2 = 0, *word, *interface = 0, *var;
char *ptr;
#ifdef DEBUG
int plugins;
int uptime_old;
#endif
u64 value = 0;
char *valstr;
/* first split at spaces */
for (word = strtok_r(oldperfdatap, " ", &last); word;
word = strtok_r(NULL, " ", &last)) {
if ((ptr = strstr(word, "::check_multi::plugins="))) {
#ifdef DEBUG
/* check multi perfdata found */
plugins = strtol(strchr(word, '=') + 1, NULL, 10);
fprintf(stderr, "Found %d plugins\n", plugins);
#endif
continue;
}
if ((ptr = strstr(word, "checktime="))) {
/* last checktime found */
*parsed_lastcheck = strtol(strchr(word, '=') + 1, NULL, 10);
#ifdef DEBUG
fprintf(stderr, "Found last checktime: %d\n", *parsed_lastcheck);
#endif
continue;
}
if ((ptr = strstr(word, "device::check_snmp::"))) {
#ifdef DEBUG
/* uptime found */
uptime_old = strtol(strchr(word, '=') + 1, NULL, 10);
fprintf(stderr, "Found %u uptime\n", uptime_old);
#endif
continue;
}
if ((ptr = strstr(word, "::check_snmp::"))) {
/* new interface found, get its name (be aware that this is the
* "cleaned" string */
interface = strtok_r(word, ":", &last2);
/* remove any prefix */
if (prefix) {
if (strlen(interface) > strlen(prefix))
interface = interface + strlen(prefix);
}
#ifdef DEBUG
if (interface)
fprintf(stderr, "interface %s found\n", interface);
#endif
word = (ptr + strlen("::check_snmp::"));
}
/* finally split the name=value pair */
valstr = strchr(word, '=');
if (valstr)
value = strtoull(valstr + 1, NULL, 10);
var = strtok_r(word, "=", &last2);
if (interface && var && valstr)
set_value(oldperfdata, interface, var, value, ifNumber, perfdata_labels);
}
return (0);
}
/*
* fill the ifStruct with values
*/
void set_value(struct ifStruct *oldperfdata, char *interface, char *var,
u64 value, int ifNumber, char *if_vars[]) {
int i;
for (i = 0; i < ifNumber; i++) {
if (strcmp(interface, oldperfdata[i].descr) == 0) {
if (strcmp(var, if_vars[0]) == 0)
oldperfdata[i].inOctets = value;
else if (strcmp(var, if_vars[1]) == 0)
oldperfdata[i].outOctets = value;
else if (strcmp(var, if_vars[2]) == 0)
oldperfdata[i].inDiscards = value;
else if (strcmp(var, if_vars[3]) == 0)
oldperfdata[i].outDiscards = value;
else if (strcmp(var, if_vars[4]) == 0)
oldperfdata[i].inErrors = value;
else if (strcmp(var, if_vars[5]) == 0)
oldperfdata[i].outErrors = value;
else if (strcmp(var, if_vars[6]) == 0)
oldperfdata[i].inUcast = value;
else if (strcmp(var, if_vars[7]) == 0)
oldperfdata[i].outUcast = value;
else if (strcmp(var, if_vars[8]) == 0)
oldperfdata[i].speed = value;
else if (strcmp(var, if_vars[9]) == 0)
oldperfdata[i].inbitps = value;
else if (strcmp(var, if_vars[10]) == 0)
oldperfdata[i].outbitps = value;
continue;
}
}
}
/*
* pass this function a list of OIDs to retrieve
* and it will fetch them with a single get
*/
int create_request(netsnmp_session *ss, struct OIDStruct **OIDpp,
char **oid_list, int index, netsnmp_pdu **response,
unsigned int sleep_usecs) {
netsnmp_pdu *pdu;
int status, i;
struct OIDStruct *OIDp;
/* store all the parsed OIDs in a structure for easy comparison */
for (i = 0; oid_list[i]; i++)
;
OIDp = (struct OIDStruct *)calloc(i, sizeof(*OIDp));
/* here we are retrieving single values, not walking the table */
pdu = snmp_pdu_create(SNMP_MSG_GET);
for (i = 0; oid_list[i]; i++) {
#ifdef DEBUG2
fprintf(stderr, "%d: adding %s\n", i, oid_list[i]);
#endif
OIDp[i].name_len = MAX_OID_LEN;
parseoids(i, oid_list[i], OIDp);
OIDp[i].name[OIDp[i].name_len++] = index;
snmp_add_null_var(pdu, OIDp[i].name, OIDp[i].name_len);
}
pdu->non_repeaters = i;
pdu->max_repetitions = 0;
*OIDpp = OIDp;
#ifdef DEBUG
implode_result = implode(", ", oid_list);
benchmark_start("Send SNMP request for OIDs: %s", implode_result);
#endif
status = snmp_synch_response(ss, pdu, response);
#ifdef DEBUG
benchmark_end();
free(implode_result);
#endif
if (sleep_usecs)
usleep(sleep_usecs);
if (status == STAT_SUCCESS && (*response)->errstat == SNMP_ERR_NOERROR) {
return (1);
} else if (status == STAT_SUCCESS &&
(*response)->errstat == SNMP_ERR_NOSUCHNAME) {
/* if e.g. 64 bit counters are not supported, we will get this error */
return (1);
} else {
/*
* FAILURE: print what went wrong!
*/
if (status == STAT_SUCCESS)
printf("Error in packet\nReason: %s\n",
snmp_errstring((*response)->errstat));
else if (status == STAT_TIMEOUT) {
printf("Timeout fetching interface stats from %s ", ss->peername);
for (i = 0; oid_list[i]; i++) {
printf("%c%s", i ? ',' : '(', oid_list[i]);
}
printf(")\n");
exit(EXITCODE_TIMEOUT);
} else {
printf("other error\n");
snmp_sess_perror("snmp_bulkget", ss);
}
exit(2);
}
return (0);
}
int parseoids(int i, char *oid_list, struct OIDStruct *query) {
/* parse oid list
*
* read each OID from our array and add it to the pdu request
*/
query[i].name_len = MAX_OID_LEN;
if (!snmp_parse_oid(oid_list, query[i].name, &query[i].name_len)) {
snmp_perror(oid_list);
SOCK_CLEANUP;
exit(1);
}
return (0);
}
void create_pdu(int mode, char **oidlist, netsnmp_pdu **pdu,
struct OIDStruct **oids, int nonrepeaters, long max) {
int i;
if (mode == NONBULK)
*pdu = snmp_pdu_create(SNMP_MSG_GET);
else if (mode == BINTEC) {
/* we cannot use a bulk get for bintec
* and the oids don't increment properly
*/
*pdu = snmp_pdu_create(SNMP_MSG_GET);
} else {
/* get the ifNumber and as many interfaces as possible */
*pdu = snmp_pdu_create(SNMP_MSG_GETBULK);
(*pdu)->non_repeaters = nonrepeaters;
(*pdu)->max_repetitions = max;
}
for (i = 0; oidlist[i]; i++) {
parseoids(i, oidlist[i], *oids);
snmp_add_null_var(*pdu, (*oids)[i].name, (*oids)[i].name_len);
}
}