SNMP frontend: getnext, oid sanity checks and scalar debug
This commit is contained in:
parent
59a637fdf4
commit
5172cf15fa
2 changed files with 79 additions and 18 deletions
|
|
@ -88,6 +88,8 @@
|
||||||
struct clixon_snmp_handle {
|
struct clixon_snmp_handle {
|
||||||
clicon_handle sh_h;
|
clicon_handle sh_h;
|
||||||
yang_stmt *sh_ys;
|
yang_stmt *sh_ys;
|
||||||
|
oid sh_oid[MAX_OID_LEN]; /* OID for debug, may be removed? */
|
||||||
|
size_t sh_oidlen;
|
||||||
char *sh_default; /* MIB default value leaf only */
|
char *sh_default; /* MIB default value leaf only */
|
||||||
netsnmp_table_data_set *sh_table; /* table struct, table only */
|
netsnmp_table_data_set *sh_table; /* table struct, table only */
|
||||||
};
|
};
|
||||||
|
|
@ -252,6 +254,10 @@ snmp_scalar_handler(netsnmp_mib_handler *handler,
|
||||||
u_char *snmpval = NULL;
|
u_char *snmpval = NULL;
|
||||||
size_t snmplen;
|
size_t snmplen;
|
||||||
int ret;
|
int ret;
|
||||||
|
<<<<<<< HEAD
|
||||||
|
=======
|
||||||
|
netsnmp_variable_list *requestvb; /* sub of requests */
|
||||||
|
>>>>>>> SNMP frontend: getnext, oid sanity checks and scalar debug
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* can be used to pass information on a per-pdu basis from a
|
* can be used to pass information on a per-pdu basis from a
|
||||||
|
|
@ -260,12 +266,37 @@ snmp_scalar_handler(netsnmp_mib_handler *handler,
|
||||||
netsnmp_data_list *agent_data;
|
netsnmp_data_list *agent_data;
|
||||||
netsnmp_free_agent_data_set()
|
netsnmp_free_agent_data_set()
|
||||||
*/
|
*/
|
||||||
clicon_debug(1, "%s %s %s", __FUNCTION__,
|
requestvb = requests->requestvb;
|
||||||
|
if (0)
|
||||||
|
fprintf(stderr, "%s %s %s\n", __FUNCTION__,
|
||||||
handler->handler_name,
|
handler->handler_name,
|
||||||
snmp_msg_int2str(reqinfo->mode));
|
snmp_msg_int2str(reqinfo->mode)
|
||||||
|
);
|
||||||
|
|
||||||
|
if (0)
|
||||||
|
fprintf(stderr, "inclusive:%d\n",
|
||||||
|
requests->inclusive
|
||||||
|
);
|
||||||
|
clicon_debug(1, "%s %s %s %d", __FUNCTION__,
|
||||||
|
handler->handler_name,
|
||||||
|
snmp_msg_int2str(reqinfo->mode),
|
||||||
|
requests->inclusive);
|
||||||
sh = (clixon_snmp_handle*)nhreg->my_reg_void;
|
sh = (clixon_snmp_handle*)nhreg->my_reg_void;
|
||||||
ys = sh->sh_ys;
|
ys = sh->sh_ys;
|
||||||
h = sh->sh_h;
|
h = sh->sh_h;
|
||||||
|
// fprint_objid(stderr, nhreg->rootoid, nhreg->rootoid_len);
|
||||||
|
assert(sh->sh_oidlen == requestvb->name_length);
|
||||||
|
assert(requestvb->name_length == nhreg->rootoid_len);
|
||||||
|
assert(snmp_oid_compare(sh->sh_oid, sh->sh_oidlen,
|
||||||
|
requestvb->name, requestvb->name_length) == 0);
|
||||||
|
assert(snmp_oid_compare(requestvb->name, requestvb->name_length,
|
||||||
|
nhreg->rootoid, nhreg->rootoid_len) == 0);
|
||||||
|
|
||||||
|
#if 0 /* If oid match fails */
|
||||||
|
netsnmp_set_request_error(reqinfo, requests,
|
||||||
|
SNMP_NOSUCHOBJECT);
|
||||||
|
return SNMP_ERR_NOERROR;
|
||||||
|
#endif
|
||||||
|
|
||||||
if (yang2snmp_types(ys, &asn1_type, &cvtype) < 0)
|
if (yang2snmp_types(ys, &asn1_type, &cvtype) < 0)
|
||||||
goto done;
|
goto done;
|
||||||
|
|
@ -273,7 +304,7 @@ snmp_scalar_handler(netsnmp_mib_handler *handler,
|
||||||
/* see net-snmp/agent/snmp_agent.h / net-snmp/library/snmp.h */
|
/* see net-snmp/agent/snmp_agent.h / net-snmp/library/snmp.h */
|
||||||
switch (reqinfo->mode) {
|
switch (reqinfo->mode) {
|
||||||
case MODE_GET: // 160
|
case MODE_GET: // 160
|
||||||
requests->requestvb->type = asn1_type; // ASN_NULL on input
|
requestvb->type = asn1_type; // ASN_NULL on input
|
||||||
|
|
||||||
/* get xpath: see yang2api_path_fmt / api_path2xpath
|
/* get xpath: see yang2api_path_fmt / api_path2xpath
|
||||||
New fn: yang2xpath?
|
New fn: yang2xpath?
|
||||||
|
|
@ -304,8 +335,10 @@ snmp_scalar_handler(netsnmp_mib_handler *handler,
|
||||||
}
|
}
|
||||||
else if ((valstr = sh->sh_default) != NULL)
|
else if ((valstr = sh->sh_default) != NULL)
|
||||||
;
|
;
|
||||||
else
|
else{
|
||||||
valstr = "0"; // XXX table calls leafs with no value?
|
netsnmp_set_request_error(reqinfo, requests, SNMP_NOSUCHINSTANCE);
|
||||||
|
goto ok;
|
||||||
|
}
|
||||||
if ((ret = type_yang2snmp(valstr, cvtype, reqinfo, requests, &snmpval, &snmplen)) < 0)
|
if ((ret = type_yang2snmp(valstr, cvtype, reqinfo, requests, &snmpval, &snmplen)) < 0)
|
||||||
goto done;
|
goto done;
|
||||||
if (ret == 0)
|
if (ret == 0)
|
||||||
|
|
@ -319,15 +352,18 @@ snmp_scalar_handler(netsnmp_mib_handler *handler,
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* see snmplib/snmp_client.c */
|
/* see snmplib/snmp_client.c */
|
||||||
if (snmp_set_var_value(requests->requestvb,
|
if (snmp_set_var_value(requestvb,
|
||||||
snmpval,
|
snmpval,
|
||||||
snmplen) != 0){
|
snmplen) != 0){
|
||||||
clicon_err(OE_SNMP, 0, "snmp_set_var_value");
|
clicon_err(OE_SNMP, 0, "snmp_set_var_value");
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case MODE_GETNEXT: // 161
|
||||||
|
assert(0); // Not seen?
|
||||||
|
break;
|
||||||
case MODE_SET_RESERVE1: // 0
|
case MODE_SET_RESERVE1: // 0
|
||||||
if (requests->requestvb->type != asn1_type)
|
if (requestvb->type != asn1_type)
|
||||||
netsnmp_set_request_error(reqinfo, requests,
|
netsnmp_set_request_error(reqinfo, requests,
|
||||||
SNMP_ERR_WRONGTYPE);
|
SNMP_ERR_WRONGTYPE);
|
||||||
break;
|
break;
|
||||||
|
|
@ -340,7 +376,7 @@ snmp_scalar_handler(netsnmp_mib_handler *handler,
|
||||||
* update current
|
* update current
|
||||||
*/
|
*/
|
||||||
/* yang2xpath -> xpath2xml
|
/* yang2xpath -> xpath2xml
|
||||||
* accesses = *(requests->requestvb->val.integer);
|
* accesses = *(requestvb->val.integer);
|
||||||
* rpc edit-config
|
* rpc edit-config
|
||||||
<data></data>
|
<data></data>
|
||||||
*/
|
*/
|
||||||
|
|
@ -349,7 +385,8 @@ snmp_scalar_handler(netsnmp_mib_handler *handler,
|
||||||
clicon_err(OE_UNIX, errno, "cbuf_new");
|
clicon_err(OE_UNIX, errno, "cbuf_new");
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
cprintf(cb, "<config><NET-SNMP-EXAMPLES-MIB xmlns=\"urn:ietf:params:xml:ns:yang:smiv2:NET-SNMP-EXAMPLES-MIB\"><netSnmpExampleScalars><netSnmpExampleInteger>%ld</netSnmpExampleInteger></netSnmpExampleScalars></NET-SNMP-EXAMPLES-MIB></config>", *requests->requestvb->val.integer);
|
/*! XXX only int */
|
||||||
|
cprintf(cb, "<config><NET-SNMP-EXAMPLES-MIB xmlns=\"urn:ietf:params:xml:ns:yang:smiv2:NET-SNMP-EXAMPLES-MIB\"><netSnmpExampleScalars><netSnmpExampleInteger>%ld</netSnmpExampleInteger></netSnmpExampleScalars></NET-SNMP-EXAMPLES-MIB></config>", *requestvb->val.integer);
|
||||||
if (clicon_rpc_edit_config(h, "candidate", OP_MERGE, cbuf_get(cb)) < 0)
|
if (clicon_rpc_edit_config(h, "candidate", OP_MERGE, cbuf_get(cb)) < 0)
|
||||||
goto done;
|
goto done;
|
||||||
break;
|
break;
|
||||||
|
|
@ -436,9 +473,12 @@ mib_yang_table(clicon_handle h,
|
||||||
clicon_err(OE_UNIX, errno, "malloc");
|
clicon_err(OE_UNIX, errno, "malloc");
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
|
memset(sh, 0, sizeof(*sh));
|
||||||
sh->sh_h = h;
|
sh->sh_h = h;
|
||||||
sh->sh_ys = ys;
|
sh->sh_ys = ys;
|
||||||
sh->sh_table = table;
|
sh->sh_table = table;
|
||||||
|
memcpy(sh->sh_oid, oid1, sizeof(oid1));
|
||||||
|
sh->sh_oidlen = sz1;
|
||||||
|
|
||||||
clixon_table_create(table, ys, h);
|
clixon_table_create(table, ys, h);
|
||||||
|
|
||||||
|
|
@ -531,8 +571,11 @@ mib_yang_leaf(clicon_handle h,
|
||||||
clicon_err(OE_UNIX, errno, "malloc");
|
clicon_err(OE_UNIX, errno, "malloc");
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
|
memset(sh, 0, sizeof(*sh));
|
||||||
sh->sh_h = h;
|
sh->sh_h = h;
|
||||||
sh->sh_ys = ys;
|
sh->sh_ys = ys;
|
||||||
|
memcpy(sh->sh_oid, oid1, sizeof(oid1));
|
||||||
|
sh->sh_oidlen = sz1;
|
||||||
sh->sh_default = default_str;
|
sh->sh_default = default_str;
|
||||||
if ((nhreg = netsnmp_handler_registration_create(name,
|
if ((nhreg = netsnmp_handler_registration_create(name,
|
||||||
handler,
|
handler,
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ fi
|
||||||
|
|
||||||
snmpd=$(type -p snmpd)
|
snmpd=$(type -p snmpd)
|
||||||
snmpget="$(type -p snmpget) -On -c public -v2c localhost "
|
snmpget="$(type -p snmpget) -On -c public -v2c localhost "
|
||||||
snmpset="$(type -p snmpset) -On -c public -v2c localhost "
|
snmpgetnext="$(type -p snmpgetnext) -On -c public -v2c localhost "
|
||||||
|
|
||||||
cfg=$dir/conf_startup.xml
|
cfg=$dir/conf_startup.xml
|
||||||
fyang=$dir/clixon-example.yang
|
fyang=$dir/clixon-example.yang
|
||||||
|
|
@ -53,10 +53,13 @@ module clixon-example{
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
# This is state data written to file that backend reads from (on request)
|
# This is state data written to file that backend reads from (on request)
|
||||||
|
# integer and string have values, sleeper does not and uses default (=1)
|
||||||
cat <<EOF > $fstate
|
cat <<EOF > $fstate
|
||||||
<NET-SNMP-EXAMPLES-MIB xmlns="urn:ietf:params:xml:ns:yang:smiv2:NET-SNMP-EXAMPLES-MIB">
|
<NET-SNMP-EXAMPLES-MIB xmlns="urn:ietf:params:xml:ns:yang:smiv2:NET-SNMP-EXAMPLES-MIB">
|
||||||
<netSnmpExampleScalars>
|
<netSnmpExampleScalars>
|
||||||
<netSnmpExampleInteger>42</netSnmpExampleInteger>
|
<netSnmpExampleInteger>42</netSnmpExampleInteger>
|
||||||
|
<!-- netSnmpExampleSleeper>1</netSnmpExampleSleeper -->
|
||||||
|
<netSnmpExampleString>This is not default</netSnmpExampleString>
|
||||||
</netSnmpExampleScalars>
|
</netSnmpExampleScalars>
|
||||||
</NET-SNMP-EXAMPLES-MIB>
|
</NET-SNMP-EXAMPLES-MIB>
|
||||||
EOF
|
EOF
|
||||||
|
|
@ -102,15 +105,30 @@ testinit
|
||||||
|
|
||||||
# NET-SNMP-EXAMPLES-MIB::netSnmpExamples
|
# NET-SNMP-EXAMPLES-MIB::netSnmpExamples
|
||||||
MIB=".1.3.6.1.4.1.8072.2"
|
MIB=".1.3.6.1.4.1.8072.2"
|
||||||
OID="${MIB}.1.1" # netSnmpExampleInteger
|
OID1="${MIB}.1.1" # netSnmpExampleInteger
|
||||||
|
OID2="${MIB}.1.2" # netSnmpExampleSleeper
|
||||||
|
OID3="${MIB}.1.3" # netSnmpExampleString
|
||||||
|
OID4="${MIB}.3.2.1" # netSnmpExampleHeartbeatRate
|
||||||
|
|
||||||
new "Test SNMP get for int value in state file"
|
new "$snmpget"
|
||||||
expectpart "$($snmpget $OID)" 0 "$OID = INTEGER: 42"
|
|
||||||
|
|
||||||
OID="${MIB}.1.3" # netSnmpExampleString
|
new "Test SNMP get int"
|
||||||
|
expectpart "$($snmpget $OID1)" 0 "$OID1 = INTEGER: 42"
|
||||||
|
|
||||||
new "Test SNMP get for string value in state file"
|
new "Test SNMP getnext int (should be sleeper)"
|
||||||
expectpart "$($snmpget $OID)" 0 "$OID = STRING: So long, and thanks for all the fish!"
|
expectpart "$($snmpgetnext $OID1)" 0 "$OID2 = INTEGER: 1"
|
||||||
|
|
||||||
|
new "Test SNMP get sleeper (default)"
|
||||||
|
expectpart "$($snmpget $OID2)" 0 "$OID2 = INTEGER: 1"
|
||||||
|
|
||||||
|
new "Test SNMP getnext sleeper (expect string)"
|
||||||
|
expectpart "$($snmpgetnext $OID2)" 0 "$OID3 = STRING: This is not default"
|
||||||
|
|
||||||
|
new "Test SNMP get string"
|
||||||
|
expectpart "$($snmpget $OID3)" 0 "$OID3 = STRING: This is not default" --not-- "fish"
|
||||||
|
|
||||||
|
new "Test SNMP getnext string (expect heartbeat / no such object?)"
|
||||||
|
expectpart "$($snmpgetnext $OID3)" 0 "$OID3 = No more variables" # XXX this is a notification?
|
||||||
|
|
||||||
new "Cleaning up"
|
new "Cleaning up"
|
||||||
testexit
|
testexit
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue