65 struct snmp_msg_trap trap_msg;
67 static u16_t snmp_resp_header_sum(
struct snmp_msg_pstat *m_stat,
u16_t vb_len);
68 static u16_t snmp_trap_header_sum(
struct snmp_msg_trap *m_trap,
u16_t vb_len);
69 static u16_t snmp_varbind_list_sum(
struct snmp_varbind_root *root);
71 static u16_t snmp_resp_header_enc(
struct snmp_msg_pstat *m_stat,
struct pbuf *p);
72 static u16_t snmp_trap_header_enc(
struct snmp_msg_trap *m_trap,
struct pbuf *p);
73 static u16_t snmp_varbind_list_enc(
struct snmp_varbind_root *root,
struct pbuf *p,
u16_t ofs);
81 snmp_trap_dst_enable(
u8_t dst_idx,
u8_t enable)
85 trap_dst[dst_idx].enable = enable;
113 snmp_send_response(
struct snmp_msg_pstat *m_stat)
115 struct snmp_varbind_root emptyvb = {
NULL,
NULL, 0, 0, 0};
121 tot_len = snmp_varbind_list_sum(&m_stat->outvb);
122 tot_len = snmp_resp_header_sum(m_stat, tot_len);
131 m_stat->error_status = SNMP_ES_TOOBIG;
132 m_stat->error_index = 0;
134 tot_len = snmp_varbind_list_sum(&emptyvb);
135 tot_len = snmp_resp_header_sum(m_stat, tot_len);
147 ofs = snmp_resp_header_enc(m_stat, p);
148 if (m_stat->error_status == SNMP_ES_TOOBIG)
150 snmp_varbind_list_enc(&emptyvb, p, ofs);
154 snmp_varbind_list_enc(&m_stat->outvb, p, ofs);
157 switch (m_stat->error_status)
162 case SNMP_ES_NOSUCHNAME:
165 case SNMP_ES_BADVALUE:
168 case SNMP_ES_GENERROR:
177 udp_connect(m_stat->pcb, &m_stat->sip, m_stat->sp);
178 err = udp_send(m_stat->pcb, p);
189 udp_disconnect(m_stat->pcb);
220 snmp_send_trap(
s8_t generic_trap,
struct snmp_obj_id *eoid,
s32_t specific_trap)
222 struct snmp_trap_dst *td;
223 struct netif *dst_if;
238 trap_msg.sip_raw[0] =
ip4_addr1(&dst_ip);
239 trap_msg.sip_raw[1] =
ip4_addr2(&dst_ip);
240 trap_msg.sip_raw[2] =
ip4_addr3(&dst_ip);
241 trap_msg.sip_raw[3] =
ip4_addr4(&dst_ip);
242 trap_msg.gen_trap = generic_trap;
243 trap_msg.spc_trap = specific_trap;
244 if (generic_trap == SNMP_GENTRAP_ENTERPRISESPC)
247 trap_msg.enterprise = eoid;
257 tot_len = snmp_varbind_list_sum(&trap_msg.outvb);
258 tot_len = snmp_trap_header_sum(&trap_msg, tot_len);
267 ofs = snmp_trap_header_enc(&trap_msg, p);
268 snmp_varbind_list_enc(&trap_msg.outvb, p, ofs);
274 udp_sendto(trap_msg.pcb, p, &trap_msg.dip, SNMP_TRAP_PORT);
288 snmp_coldstart_trap(
void)
290 trap_msg.outvb.head =
NULL;
291 trap_msg.outvb.tail =
NULL;
292 trap_msg.outvb.count = 0;
293 snmp_send_trap(SNMP_GENTRAP_COLDSTART,
NULL, 0);
297 snmp_authfail_trap(
void)
303 trap_msg.outvb.head =
NULL;
304 trap_msg.outvb.tail =
NULL;
305 trap_msg.outvb.count = 0;
306 snmp_send_trap(SNMP_GENTRAP_AUTHFAIL,
NULL, 0);
319 snmp_resp_header_sum(
struct snmp_msg_pstat *m_stat,
u16_t vb_len)
322 struct snmp_resp_header_lengths *rhl;
326 snmp_asn1_enc_s32t_cnt(m_stat->error_index, &rhl->erridxlen);
327 snmp_asn1_enc_length_cnt(rhl->erridxlen, &rhl->erridxlenlen);
328 tot_len += 1 + rhl->erridxlenlen + rhl->erridxlen;
330 snmp_asn1_enc_s32t_cnt(m_stat->error_status, &rhl->errstatlen);
331 snmp_asn1_enc_length_cnt(rhl->errstatlen, &rhl->errstatlenlen);
332 tot_len += 1 + rhl->errstatlenlen + rhl->errstatlen;
334 snmp_asn1_enc_s32t_cnt(m_stat->rid, &rhl->ridlen);
335 snmp_asn1_enc_length_cnt(rhl->ridlen, &rhl->ridlenlen);
336 tot_len += 1 + rhl->ridlenlen + rhl->ridlen;
338 rhl->pdulen = tot_len;
339 snmp_asn1_enc_length_cnt(rhl->pdulen, &rhl->pdulenlen);
340 tot_len += 1 + rhl->pdulenlen;
342 rhl->comlen = m_stat->com_strlen;
343 snmp_asn1_enc_length_cnt(rhl->comlen, &rhl->comlenlen);
344 tot_len += 1 + rhl->comlenlen + rhl->comlen;
346 snmp_asn1_enc_s32t_cnt(snmp_version, &rhl->verlen);
347 snmp_asn1_enc_length_cnt(rhl->verlen, &rhl->verlenlen);
348 tot_len += 1 + rhl->verlen + rhl->verlenlen;
350 rhl->seqlen = tot_len;
351 snmp_asn1_enc_length_cnt(rhl->seqlen, &rhl->seqlenlen);
352 tot_len += 1 + rhl->seqlenlen;
366 snmp_trap_header_sum(
struct snmp_msg_trap *m_trap,
u16_t vb_len)
369 struct snmp_trap_header_lengths *thl;
374 snmp_asn1_enc_u32t_cnt(m_trap->ts, &thl->tslen);
375 snmp_asn1_enc_length_cnt(thl->tslen, &thl->tslenlen);
376 tot_len += 1 + thl->tslen + thl->tslenlen;
378 snmp_asn1_enc_s32t_cnt(m_trap->spc_trap, &thl->strplen);
379 snmp_asn1_enc_length_cnt(thl->strplen, &thl->strplenlen);
380 tot_len += 1 + thl->strplen + thl->strplenlen;
382 snmp_asn1_enc_s32t_cnt(m_trap->gen_trap, &thl->gtrplen);
383 snmp_asn1_enc_length_cnt(thl->gtrplen, &thl->gtrplenlen);
384 tot_len += 1 + thl->gtrplen + thl->gtrplenlen;
387 snmp_asn1_enc_length_cnt(thl->aaddrlen, &thl->aaddrlenlen);
388 tot_len += 1 + thl->aaddrlen + thl->aaddrlenlen;
390 snmp_asn1_enc_oid_cnt(m_trap->enterprise->len, &m_trap->enterprise->id[0], &thl->eidlen);
391 snmp_asn1_enc_length_cnt(thl->eidlen, &thl->eidlenlen);
392 tot_len += 1 + thl->eidlen + thl->eidlenlen;
394 thl->pdulen = tot_len;
395 snmp_asn1_enc_length_cnt(thl->pdulen, &thl->pdulenlen);
396 tot_len += 1 + thl->pdulenlen;
398 thl->comlen =
sizeof(snmp_publiccommunity) - 1;
399 snmp_asn1_enc_length_cnt(thl->comlen, &thl->comlenlen);
400 tot_len += 1 + thl->comlenlen + thl->comlen;
402 snmp_asn1_enc_s32t_cnt(snmp_version, &thl->verlen);
403 snmp_asn1_enc_length_cnt(thl->verlen, &thl->verlenlen);
404 tot_len += 1 + thl->verlen + thl->verlenlen;
406 thl->seqlen = tot_len;
407 snmp_asn1_enc_length_cnt(thl->seqlen, &thl->seqlenlen);
408 tot_len += 1 + thl->seqlenlen;
421 snmp_varbind_list_sum(
struct snmp_varbind_root *root)
423 struct snmp_varbind *vb;
433 switch (vb->value_type)
435 case (SNMP_ASN1_UNIV | SNMP_ASN1_PRIMIT | SNMP_ASN1_INTEG):
436 sint_ptr = (
s32_t*)vb->value;
437 snmp_asn1_enc_s32t_cnt(*sint_ptr, &vb->vlen);
439 case (SNMP_ASN1_APPLIC | SNMP_ASN1_PRIMIT | SNMP_ASN1_COUNTER):
440 case (SNMP_ASN1_APPLIC | SNMP_ASN1_PRIMIT | SNMP_ASN1_GAUGE):
441 case (SNMP_ASN1_APPLIC | SNMP_ASN1_PRIMIT | SNMP_ASN1_TIMETICKS):
442 uint_ptr = (
u32_t*)vb->value;
443 snmp_asn1_enc_u32t_cnt(*uint_ptr, &vb->vlen);
445 case (SNMP_ASN1_UNIV | SNMP_ASN1_PRIMIT | SNMP_ASN1_OC_STR):
446 case (SNMP_ASN1_UNIV | SNMP_ASN1_PRIMIT | SNMP_ASN1_NUL):
447 case (SNMP_ASN1_APPLIC | SNMP_ASN1_PRIMIT | SNMP_ASN1_IPADDR):
448 case (SNMP_ASN1_APPLIC | SNMP_ASN1_PRIMIT | SNMP_ASN1_OPAQUE):
449 vb->vlen = vb->value_len;
451 case (SNMP_ASN1_UNIV | SNMP_ASN1_PRIMIT | SNMP_ASN1_OBJ_ID):
452 sint_ptr = (
s32_t*)vb->value;
453 snmp_asn1_enc_oid_cnt(vb->value_len /
sizeof(
s32_t), sint_ptr, &vb->vlen);
461 snmp_asn1_enc_length_cnt(vb->vlen, &vb->vlenlen);
462 snmp_asn1_enc_oid_cnt(vb->ident_len, vb->ident, &vb->olen);
463 snmp_asn1_enc_length_cnt(vb->olen, &vb->olenlen);
465 vb->seqlen = 1 + vb->vlenlen + vb->vlen;
466 vb->seqlen += 1 + vb->olenlen + vb->olen;
467 snmp_asn1_enc_length_cnt(vb->seqlen, &vb->seqlenlen);
470 tot_len += 1 + vb->seqlenlen + vb->seqlen;
476 root->seqlen = tot_len;
477 snmp_asn1_enc_length_cnt(root->seqlen, &root->seqlenlen);
478 tot_len += 1 + root->seqlenlen;
487 snmp_resp_header_enc(
struct snmp_msg_pstat *m_stat,
struct pbuf *p)
492 snmp_asn1_enc_type(p, ofs, (SNMP_ASN1_UNIV | SNMP_ASN1_CONSTR | SNMP_ASN1_SEQ));
494 snmp_asn1_enc_length(p, ofs, m_stat->rhl.seqlen);
495 ofs += m_stat->rhl.seqlenlen;
497 snmp_asn1_enc_type(p, ofs, (SNMP_ASN1_UNIV | SNMP_ASN1_PRIMIT | SNMP_ASN1_INTEG));
499 snmp_asn1_enc_length(p, ofs, m_stat->rhl.verlen);
500 ofs += m_stat->rhl.verlenlen;
501 snmp_asn1_enc_s32t(p, ofs, m_stat->rhl.verlen, snmp_version);
502 ofs += m_stat->rhl.verlen;
504 snmp_asn1_enc_type(p, ofs, (SNMP_ASN1_UNIV | SNMP_ASN1_PRIMIT | SNMP_ASN1_OC_STR));
506 snmp_asn1_enc_length(p, ofs, m_stat->rhl.comlen);
507 ofs += m_stat->rhl.comlenlen;
508 snmp_asn1_enc_raw(p, ofs, m_stat->rhl.comlen, m_stat->community);
509 ofs += m_stat->rhl.comlen;
511 snmp_asn1_enc_type(p, ofs, (SNMP_ASN1_CONTXT | SNMP_ASN1_CONSTR | SNMP_ASN1_PDU_GET_RESP));
513 snmp_asn1_enc_length(p, ofs, m_stat->rhl.pdulen);
514 ofs += m_stat->rhl.pdulenlen;
516 snmp_asn1_enc_type(p, ofs, (SNMP_ASN1_UNIV | SNMP_ASN1_PRIMIT | SNMP_ASN1_INTEG));
518 snmp_asn1_enc_length(p, ofs, m_stat->rhl.ridlen);
519 ofs += m_stat->rhl.ridlenlen;
520 snmp_asn1_enc_s32t(p, ofs, m_stat->rhl.ridlen, m_stat->rid);
521 ofs += m_stat->rhl.ridlen;
523 snmp_asn1_enc_type(p, ofs, (SNMP_ASN1_UNIV | SNMP_ASN1_PRIMIT | SNMP_ASN1_INTEG));
525 snmp_asn1_enc_length(p, ofs, m_stat->rhl.errstatlen);
526 ofs += m_stat->rhl.errstatlenlen;
527 snmp_asn1_enc_s32t(p, ofs, m_stat->rhl.errstatlen, m_stat->error_status);
528 ofs += m_stat->rhl.errstatlen;
530 snmp_asn1_enc_type(p, ofs, (SNMP_ASN1_UNIV | SNMP_ASN1_PRIMIT | SNMP_ASN1_INTEG));
532 snmp_asn1_enc_length(p, ofs, m_stat->rhl.erridxlen);
533 ofs += m_stat->rhl.erridxlenlen;
534 snmp_asn1_enc_s32t(p, ofs, m_stat->rhl.erridxlen, m_stat->error_index);
535 ofs += m_stat->rhl.erridxlen;
544 snmp_trap_header_enc(
struct snmp_msg_trap *m_trap,
struct pbuf *p)
549 snmp_asn1_enc_type(p, ofs, (SNMP_ASN1_UNIV | SNMP_ASN1_CONSTR | SNMP_ASN1_SEQ));
551 snmp_asn1_enc_length(p, ofs, m_trap->thl.seqlen);
552 ofs += m_trap->thl.seqlenlen;
554 snmp_asn1_enc_type(p, ofs, (SNMP_ASN1_UNIV | SNMP_ASN1_PRIMIT | SNMP_ASN1_INTEG));
556 snmp_asn1_enc_length(p, ofs, m_trap->thl.verlen);
557 ofs += m_trap->thl.verlenlen;
558 snmp_asn1_enc_s32t(p, ofs, m_trap->thl.verlen, snmp_version);
559 ofs += m_trap->thl.verlen;
561 snmp_asn1_enc_type(p, ofs, (SNMP_ASN1_UNIV | SNMP_ASN1_PRIMIT | SNMP_ASN1_OC_STR));
563 snmp_asn1_enc_length(p, ofs, m_trap->thl.comlen);
564 ofs += m_trap->thl.comlenlen;
565 snmp_asn1_enc_raw(p, ofs, m_trap->thl.comlen, (
u8_t *)&snmp_publiccommunity[0]);
566 ofs += m_trap->thl.comlen;
568 snmp_asn1_enc_type(p, ofs, (SNMP_ASN1_CONTXT | SNMP_ASN1_CONSTR | SNMP_ASN1_PDU_TRAP));
570 snmp_asn1_enc_length(p, ofs, m_trap->thl.pdulen);
571 ofs += m_trap->thl.pdulenlen;
573 snmp_asn1_enc_type(p, ofs, (SNMP_ASN1_UNIV | SNMP_ASN1_PRIMIT | SNMP_ASN1_OBJ_ID));
575 snmp_asn1_enc_length(p, ofs, m_trap->thl.eidlen);
576 ofs += m_trap->thl.eidlenlen;
577 snmp_asn1_enc_oid(p, ofs, m_trap->enterprise->
len, &m_trap->enterprise->id[0]);
578 ofs += m_trap->thl.eidlen;
580 snmp_asn1_enc_type(p, ofs, (SNMP_ASN1_APPLIC | SNMP_ASN1_PRIMIT | SNMP_ASN1_IPADDR));
582 snmp_asn1_enc_length(p, ofs, m_trap->thl.aaddrlen);
583 ofs += m_trap->thl.aaddrlenlen;
584 snmp_asn1_enc_raw(p, ofs, m_trap->thl.aaddrlen, &m_trap->sip_raw[0]);
585 ofs += m_trap->thl.aaddrlen;
587 snmp_asn1_enc_type(p, ofs, (SNMP_ASN1_UNIV | SNMP_ASN1_PRIMIT | SNMP_ASN1_INTEG));
589 snmp_asn1_enc_length(p, ofs, m_trap->thl.gtrplen);
590 ofs += m_trap->thl.gtrplenlen;
591 snmp_asn1_enc_u32t(p, ofs, m_trap->thl.gtrplen, m_trap->gen_trap);
592 ofs += m_trap->thl.gtrplen;
594 snmp_asn1_enc_type(p, ofs, (SNMP_ASN1_UNIV | SNMP_ASN1_PRIMIT | SNMP_ASN1_INTEG));
596 snmp_asn1_enc_length(p, ofs, m_trap->thl.strplen);
597 ofs += m_trap->thl.strplenlen;
598 snmp_asn1_enc_u32t(p, ofs, m_trap->thl.strplen, m_trap->spc_trap);
599 ofs += m_trap->thl.strplen;
601 snmp_asn1_enc_type(p, ofs, (SNMP_ASN1_APPLIC | SNMP_ASN1_PRIMIT | SNMP_ASN1_TIMETICKS));
603 snmp_asn1_enc_length(p, ofs, m_trap->thl.tslen);
604 ofs += m_trap->thl.tslenlen;
605 snmp_asn1_enc_u32t(p, ofs, m_trap->thl.tslen, m_trap->ts);
606 ofs += m_trap->thl.tslen;
615 snmp_varbind_list_enc(
struct snmp_varbind_root *root,
struct pbuf *p,
u16_t ofs)
617 struct snmp_varbind *vb;
622 snmp_asn1_enc_type(p, ofs, (SNMP_ASN1_UNIV | SNMP_ASN1_CONSTR | SNMP_ASN1_SEQ));
624 snmp_asn1_enc_length(p, ofs, root->seqlen);
625 ofs += root->seqlenlen;
630 snmp_asn1_enc_type(p, ofs, (SNMP_ASN1_UNIV | SNMP_ASN1_CONSTR | SNMP_ASN1_SEQ));
632 snmp_asn1_enc_length(p, ofs, vb->seqlen);
633 ofs += vb->seqlenlen;
635 snmp_asn1_enc_type(p, ofs, (SNMP_ASN1_UNIV | SNMP_ASN1_PRIMIT | SNMP_ASN1_OBJ_ID));
637 snmp_asn1_enc_length(p, ofs, vb->olen);
639 snmp_asn1_enc_oid(p, ofs, vb->ident_len, &vb->ident[0]);
642 snmp_asn1_enc_type(p, ofs, vb->value_type);
644 snmp_asn1_enc_length(p, ofs, vb->vlen);
647 switch (vb->value_type)
649 case (SNMP_ASN1_UNIV | SNMP_ASN1_PRIMIT | SNMP_ASN1_INTEG):
650 sint_ptr = (
s32_t*)vb->value;
651 snmp_asn1_enc_s32t(p, ofs, vb->vlen, *sint_ptr);
653 case (SNMP_ASN1_APPLIC | SNMP_ASN1_PRIMIT | SNMP_ASN1_COUNTER):
654 case (SNMP_ASN1_APPLIC | SNMP_ASN1_PRIMIT | SNMP_ASN1_GAUGE):
655 case (SNMP_ASN1_APPLIC | SNMP_ASN1_PRIMIT | SNMP_ASN1_TIMETICKS):
656 uint_ptr = (
u32_t*)vb->value;
657 snmp_asn1_enc_u32t(p, ofs, vb->vlen, *uint_ptr);
659 case (SNMP_ASN1_UNIV | SNMP_ASN1_PRIMIT | SNMP_ASN1_OC_STR):
660 case (SNMP_ASN1_APPLIC | SNMP_ASN1_PRIMIT | SNMP_ASN1_IPADDR):
661 case (SNMP_ASN1_APPLIC | SNMP_ASN1_PRIMIT | SNMP_ASN1_OPAQUE):
662 raw_ptr = (
u8_t*)vb->value;
663 snmp_asn1_enc_raw(p, ofs, vb->vlen, raw_ptr);
665 case (SNMP_ASN1_UNIV | SNMP_ASN1_PRIMIT | SNMP_ASN1_NUL):
667 case (SNMP_ASN1_UNIV | SNMP_ASN1_PRIMIT | SNMP_ASN1_OBJ_ID):
668 sint_ptr = (
s32_t*)vb->value;
669 snmp_asn1_enc_oid(p, ofs, vb->value_len /
sizeof(
s32_t), sint_ptr);