X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fsnmp.c;h=43815dcf5c22a2ecb0a25aaf81b91ecd1e45a9c8;hb=5482b5db28cf542fca2036db2460169b4fac6124;hp=dd7e99843103c3469ff0428b9c5158d2175f23d2;hpb=27ca3ca92a757b5c9bb3baa5a29ef352ec70b1c9;p=collectd.git diff --git a/src/snmp.c b/src/snmp.c index dd7e9984..43815dcf 100644 --- a/src/snmp.c +++ b/src/snmp.c @@ -99,6 +99,8 @@ struct host_definition_s { c_complain_t complaint; data_definition_t **data_list; int data_list_len; + + int bulk_size; }; typedef struct host_definition_s host_definition_t; @@ -762,6 +764,7 @@ static int csnmp_config_add_host(oconfig_item_t *ci) { /* These mean that we have not set a timeout or retry value */ hd->timeout = 0; hd->retries = -1; + hd->bulk_size = 0; for (int i = 0; i < ci->children_num; i++) { oconfig_item_t *option = ci->children + i; @@ -794,6 +797,8 @@ static int csnmp_config_add_host(oconfig_item_t *ci) { status = csnmp_config_add_host_security_level(hd, option); else if (strcasecmp("Context", option->key) == 0) status = cf_util_get_string(option, &hd->context); + else if (strcasecmp("BulkSize", option->key) == 0) + status = cf_util_get_int(option, &hd->bulk_size); else { WARNING( "snmp plugin: csnmp_config_add_host: Option `%s' not allowed here.", @@ -876,7 +881,8 @@ static int csnmp_config_add_host(oconfig_item_t *ci) { status = plugin_register_complex_read( /* group = */ NULL, cb_name, csnmp_read_host, interval, &(user_data_t){ - .data = hd, .free_func = csnmp_host_definition_destroy, + .data = hd, + .free_func = csnmp_host_definition_destroy, }); if (status != 0) { ERROR("snmp plugin: Registering complex read function failed."); @@ -1571,7 +1577,7 @@ static int csnmp_read_table(host_definition_t *host, data_definition_t *data) { csnmp_oid_type_t oid_list_todo[oid_list_len]; int status; - size_t i; + size_t i, j; /* `value_list_head' and `value_cells_tail' implement a linked list for each * value. `instance_cells_head' and `instance_cells_tail' implement a linked @@ -1587,8 +1593,8 @@ static int csnmp_read_table(host_definition_t *host, data_definition_t *data) { csnmp_cell_value_t **value_cells_head; csnmp_cell_value_t **value_cells_tail; - DEBUG("snmp plugin: csnmp_read_table (host = %s, data = %s)", host->name, - data->name); + DEBUG("snmp plugin: csnmp_read_table (host = %s, data = %s (%ld))", + host->name, data->name, data->values_len); if (host->sess_handle == NULL) { DEBUG("snmp plugin: csnmp_read_table: host->sess_handle == NULL"); @@ -1654,7 +1660,14 @@ static int csnmp_read_table(host_definition_t *host, data_definition_t *data) { status = 0; while (status == 0) { - req = snmp_pdu_create(SNMP_MSG_GETNEXT); + /* If SNMP v2 and later and bulk transfert enabled, use GETBULK PDU */ + if (host->version > 1 && host->bulk_size > 0) { + req = snmp_pdu_create(SNMP_MSG_GETBULK); + req->non_repeaters = 0; + req->max_repetitions = host->bulk_size; + } else { + req = snmp_pdu_create(SNMP_MSG_GETNEXT); + } if (req == NULL) { ERROR("snmp plugin: snmp_pdu_create failed."); status = -1; @@ -1682,6 +1695,13 @@ static int csnmp_read_table(host_definition_t *host, data_definition_t *data) { break; } + if (req->command == SNMP_MSG_GETBULK) { + /* In bulk mode the host will send 'max_repetitions' values per + requested variable, so we need to split it per number of variable + to stay 'in budget' */ + req->max_repetitions = floor(host->bulk_size / oid_list_todo_num); + } + res = NULL; status = snmp_sess_synch_response(host->sess_handle, req, &res); @@ -1753,11 +1773,18 @@ static int csnmp_read_table(host_definition_t *host, data_definition_t *data) { continue; } - for (vb = res->variables, i = 0; (vb != NULL); - vb = vb->next_variable, i++) { + for (vb = res->variables, j = 0; (vb != NULL); + vb = vb->next_variable, j++) { + /* If bulk request is active convert value index of the extra value */ + if (host->version > 1 && host->bulk_size > 0) { + i = j % oid_list_todo_num; + } else { + i = j; + } /* Calculate value index from todo list */ while ((i < oid_list_len) && !oid_list_todo[i]) { i++; + j++; } if (i >= oid_list_len) { break;