2022-08-01 11:01:49 +00:00
|
|
|
/*
|
|
|
|
* BIRD -- Simple Network Management Protocol (SNMP)
|
|
|
|
*
|
|
|
|
* (c) 2022 Vojtech Vilimek <vojtech.vilimek@nic.cz>
|
|
|
|
* (c) 2022 CZ.NIC z.s.p.o.
|
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
2023-09-04 07:25:51 +00:00
|
|
|
/**
|
|
|
|
* Simple Network Management Protocol State Machine
|
|
|
|
*
|
|
|
|
* States with main transitions
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* +-----------------+
|
|
|
|
* | SNMP_INIT | entry state after call snmp_start()
|
|
|
|
* +-----------------+
|
|
|
|
* |
|
|
|
|
* | acquiring object lock for communication socket
|
|
|
|
* V
|
|
|
|
* +-----------------+
|
|
|
|
* | SNMP_LOCKED | object lock aquired
|
|
|
|
* +-----------------+
|
|
|
|
* |
|
|
|
|
* | opening communaiton socket
|
|
|
|
* V
|
|
|
|
* +-----------------+
|
|
|
|
* | SNMP_OPEN | socket created, starting subagent
|
|
|
|
* +-----------------+
|
|
|
|
* |
|
|
|
|
* | BIRD recieve response for Open-PDU
|
|
|
|
* V
|
|
|
|
* +-----------------+
|
|
|
|
* | SNMP_REGISTER | session was established, subagent registers MIBs
|
|
|
|
* +-----------------+
|
|
|
|
* |
|
|
|
|
* | subagent recieved responses for all registration requests
|
|
|
|
* V
|
|
|
|
* +-----------------+
|
|
|
|
* | SNMP_CONN | everything is set
|
|
|
|
* +-----------------+
|
|
|
|
* |
|
|
|
|
* | function snmp_shutdown() is called, BIRD sends Close-PDU
|
|
|
|
* V
|
|
|
|
* +-----------------+
|
|
|
|
* | SNMP_STOP | waiting for response
|
|
|
|
* +-----------------+
|
|
|
|
* |
|
|
|
|
* | cleaning old state information
|
|
|
|
* V
|
|
|
|
* +-----------------+
|
|
|
|
* | SNMP_DOWN | session is closed
|
|
|
|
* +-----------------+
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Erroneous transitions:
|
|
|
|
* SNMP is UP in states SNMP_CONN and also in SNMP_REGISTER because the
|
|
|
|
* session is establised and the GetNext request should be responsed
|
|
|
|
* without regard to MIB registration.
|
|
|
|
*
|
|
|
|
* When the session has been closed for some reason (socket error, reciept of
|
|
|
|
* Close-PDU) SNMP cleans the session information and message queue and goes
|
|
|
|
* back to the SNMP_LOCKED state.
|
|
|
|
*
|
|
|
|
* Reconfiguration is done in similar fashion to BGP, the reconfiguration
|
|
|
|
* request is declined, the protocols is stoped and started with new
|
|
|
|
* configuration.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2022-08-01 11:01:49 +00:00
|
|
|
#include "nest/bird.h"
|
|
|
|
#include "nest/cli.h"
|
2022-08-10 15:31:32 +00:00
|
|
|
#include "nest/locks.h"
|
|
|
|
#include "lib/socket.h"
|
2022-09-20 12:28:57 +00:00
|
|
|
#include "lib/lists.h"
|
2022-08-01 11:01:49 +00:00
|
|
|
|
2022-08-10 15:31:32 +00:00
|
|
|
#include "snmp.h"
|
|
|
|
#include "subagent.h"
|
2023-07-26 12:34:01 +00:00
|
|
|
#include "snmp_utils.h"
|
2022-08-10 15:31:32 +00:00
|
|
|
|
|
|
|
static void snmp_connected(sock *sk);
|
|
|
|
static void snmp_sock_err(sock *sk, int err);
|
|
|
|
static void snmp_ping_timer(struct timer *tm);
|
2022-09-30 07:36:09 +00:00
|
|
|
static void snmp_startup(struct snmp_proto *p);
|
|
|
|
static void snmp_startup_timeout(timer *t);
|
|
|
|
static void snmp_start_locked(struct object_lock *lock);
|
2023-07-26 12:34:01 +00:00
|
|
|
static int snmp_shutdown(struct proto *P);
|
2022-11-29 15:30:20 +00:00
|
|
|
|
|
|
|
static const char * const snmp_state[] = {
|
2023-09-04 07:25:51 +00:00
|
|
|
[SNMP_ERR] = "SNMP ERROR",
|
|
|
|
[SNMP_INIT] = "SNMP INIT",
|
|
|
|
[SNMP_LOCKED] = "SNMP LOCKED",
|
|
|
|
[SNMP_OPEN] = "SNMP CONNECTION OPENED",
|
|
|
|
[SNMP_REGISTER] = "SNMP REGISTERING MIBS",
|
|
|
|
[SNMP_CONN] = "SNMP CONNECTED",
|
|
|
|
[SNMP_STOP] = "SNMP STOPING",
|
|
|
|
[SNMP_DOWN] = "SNMP DOWN",
|
|
|
|
/*
|
2022-12-17 17:16:19 +00:00
|
|
|
[SNMP_ERR] = "SNMP ERROR",
|
|
|
|
[SNMP_DELAY] = "SNMP DELAY",
|
|
|
|
[SNMP_INIT] = "SNMP INIT",
|
|
|
|
[SNMP_REGISTER] = "SNMP REGISTERING",
|
|
|
|
[SNMP_CONN] = "SNMP CONNECTED",
|
|
|
|
[SNMP_STOP] = "SNMP STOP",
|
|
|
|
[SNMP_DOWN] = "SNMP DOWN",
|
|
|
|
[SNMP_LISTEN] = "SNMP LISTEN",
|
2023-09-04 07:25:51 +00:00
|
|
|
*/
|
2022-11-29 15:30:20 +00:00
|
|
|
};
|
|
|
|
|
2022-08-01 11:01:49 +00:00
|
|
|
static struct proto *
|
|
|
|
snmp_init(struct proto_config *CF)
|
|
|
|
{
|
|
|
|
struct proto *P = proto_new(CF);
|
2022-08-10 15:31:32 +00:00
|
|
|
struct snmp_proto *p = SKIP_BACK(struct snmp_proto, p, P);
|
2022-12-10 12:23:50 +00:00
|
|
|
const struct snmp_config *cf = SKIP_BACK(struct snmp_config, cf, CF);
|
2022-08-01 11:01:49 +00:00
|
|
|
|
|
|
|
p->rl_gen = (struct tbf) TBF_DEFAULT_LOG_LIMITS;
|
|
|
|
|
2022-08-10 15:31:32 +00:00
|
|
|
p->local_ip = cf->local_ip;
|
|
|
|
p->remote_ip = cf->remote_ip;
|
|
|
|
p->local_port = cf->local_port;
|
|
|
|
p->remote_port = cf->remote_port;
|
2023-03-14 13:09:45 +00:00
|
|
|
p->local_as = cf->local_as;
|
2023-07-26 12:34:01 +00:00
|
|
|
snmp_log("changing proto_snmp state to INIT");
|
2022-09-06 16:04:29 +00:00
|
|
|
p->state = SNMP_INIT;
|
2022-08-10 15:31:32 +00:00
|
|
|
|
|
|
|
// p->timeout = cf->timeout;
|
|
|
|
p->timeout = 15;
|
|
|
|
|
2022-12-10 12:22:37 +00:00
|
|
|
snmp_log("snmp_reconfigure() lip: %I:%u rip: %I:%u",
|
2022-08-10 15:31:32 +00:00
|
|
|
cf->local_ip, cf->local_port, cf->remote_ip, cf->remote_port);
|
|
|
|
|
2022-08-01 11:01:49 +00:00
|
|
|
return P;
|
|
|
|
}
|
|
|
|
|
2022-12-17 17:16:19 +00:00
|
|
|
static inline void
|
|
|
|
snmp_cleanup(struct snmp_proto *p)
|
2022-12-10 12:23:50 +00:00
|
|
|
{
|
2022-12-17 17:16:19 +00:00
|
|
|
rfree(p->startup_timer);
|
2023-08-08 17:00:54 +00:00
|
|
|
p->startup_timer = NULL;
|
|
|
|
|
2022-12-17 17:16:19 +00:00
|
|
|
rfree(p->ping_timer);
|
2023-08-08 17:00:54 +00:00
|
|
|
p->ping_timer = NULL;
|
2022-12-17 17:16:19 +00:00
|
|
|
|
2023-08-08 17:00:54 +00:00
|
|
|
rfree(p->sock);
|
2023-07-26 12:34:01 +00:00
|
|
|
p->sock = NULL;
|
2022-12-10 12:23:50 +00:00
|
|
|
|
2023-08-08 17:00:54 +00:00
|
|
|
rfree(p->lock);
|
2023-07-26 12:34:01 +00:00
|
|
|
p->lock = NULL;
|
2022-12-10 12:23:50 +00:00
|
|
|
|
2022-12-17 17:16:19 +00:00
|
|
|
p->state = SNMP_DOWN;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
snmp_down(struct snmp_proto *p)
|
|
|
|
{
|
|
|
|
snmp_cleanup(p);
|
|
|
|
|
2022-12-10 12:23:50 +00:00
|
|
|
proto_notify_state(&p->p, PS_DOWN);
|
|
|
|
}
|
|
|
|
|
2022-09-30 07:36:09 +00:00
|
|
|
static void
|
|
|
|
snmp_startup_timeout(timer *t)
|
|
|
|
{
|
2022-12-10 12:22:37 +00:00
|
|
|
snmp_log("startup timer triggered");
|
2022-09-30 07:36:09 +00:00
|
|
|
snmp_startup(t->data);
|
|
|
|
}
|
|
|
|
|
2022-12-17 17:16:19 +00:00
|
|
|
static void
|
|
|
|
snmp_stop_timeout(timer *t)
|
|
|
|
{
|
|
|
|
snmp_log("stop timer triggered");
|
|
|
|
|
|
|
|
struct snmp_proto *p = t->data;
|
|
|
|
|
|
|
|
snmp_down(p);
|
|
|
|
}
|
|
|
|
|
2022-09-30 07:36:09 +00:00
|
|
|
static void
|
|
|
|
snmp_startup(struct snmp_proto *p)
|
|
|
|
{
|
2022-12-10 12:23:50 +00:00
|
|
|
//snmp_log("changing proto_snmp state to INIT");
|
|
|
|
|
2023-09-04 07:25:51 +00:00
|
|
|
if (p->state == SNMP_LOCKED ||
|
|
|
|
p->state == SNMP_OPEN ||
|
|
|
|
p->state == SNMP_REGISTER ||
|
|
|
|
p->state == SNMP_CONN)
|
2022-12-10 12:23:50 +00:00
|
|
|
{
|
2023-09-04 07:25:51 +00:00
|
|
|
snmp_log("startup() already in connected state %u", p->state);
|
2022-12-10 12:23:50 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
snmp_log("snmp_startup()");
|
2022-12-06 15:32:26 +00:00
|
|
|
p->state = SNMP_INIT;
|
|
|
|
|
2022-09-30 07:36:09 +00:00
|
|
|
/* starting agentX communicaiton channel */
|
2022-12-06 15:32:26 +00:00
|
|
|
|
2022-12-10 12:22:37 +00:00
|
|
|
snmp_log("preparing lock");
|
2022-09-30 07:36:09 +00:00
|
|
|
struct object_lock *lock;
|
2022-11-29 15:30:20 +00:00
|
|
|
|
|
|
|
/* we could have the lock already acquired but be in ERROR state */
|
2022-09-30 07:36:09 +00:00
|
|
|
lock = p->lock = olock_new(p->p.pool);
|
|
|
|
|
2022-12-10 12:23:50 +00:00
|
|
|
// lock->addr
|
|
|
|
// lock->port
|
|
|
|
// lock->iface
|
|
|
|
// lock->vrf
|
2022-09-30 07:36:09 +00:00
|
|
|
lock->type = OBJLOCK_TCP;
|
|
|
|
lock->hook = snmp_start_locked;
|
|
|
|
lock->data = p;
|
|
|
|
|
2022-12-10 12:22:37 +00:00
|
|
|
snmp_log("lock acquiring");
|
2022-09-30 07:36:09 +00:00
|
|
|
olock_acquire(lock);
|
|
|
|
|
2022-12-10 12:22:37 +00:00
|
|
|
/*
|
|
|
|
snmp_log("local ip: %I:%u, remote ip: %I:%u",
|
2022-09-30 07:36:09 +00:00
|
|
|
p->local_ip, p->local_port, p->remote_ip, p->remote_port);
|
2022-12-10 12:22:37 +00:00
|
|
|
*/
|
2022-09-30 07:36:09 +00:00
|
|
|
}
|
|
|
|
|
2022-08-10 15:31:32 +00:00
|
|
|
static void
|
|
|
|
snmp_start_locked(struct object_lock *lock)
|
2022-08-02 14:04:25 +00:00
|
|
|
{
|
2022-12-17 17:16:19 +00:00
|
|
|
snmp_log("snmp_start_locked() - lock acquired; preparing socket");
|
2022-08-10 15:31:32 +00:00
|
|
|
struct snmp_proto *p = lock->data;
|
|
|
|
|
2023-09-04 07:25:51 +00:00
|
|
|
p->state = SNMP_LOCKED;
|
|
|
|
|
2022-08-10 15:31:32 +00:00
|
|
|
sock *s = sk_new(p->p.pool);
|
|
|
|
s->type = SK_TCP_ACTIVE;
|
|
|
|
s->saddr = p->local_ip;
|
|
|
|
s->daddr = p->remote_ip;
|
|
|
|
s->dport = p->remote_port;
|
|
|
|
s->rbsize = SNMP_RX_BUFFER_SIZE;
|
|
|
|
s->tbsize = SNMP_TX_BUFFER_SIZE;
|
2022-09-30 07:36:09 +00:00
|
|
|
|
2022-09-06 16:04:29 +00:00
|
|
|
//s->tos = IP_PREC_INTERNET_CONTROL
|
2022-08-10 15:31:32 +00:00
|
|
|
//s->rx_hook = snmp_connected;
|
|
|
|
s->tx_hook = snmp_connected;
|
|
|
|
s->err_hook = snmp_sock_err;
|
|
|
|
|
2023-08-08 17:00:54 +00:00
|
|
|
//mb_free(p->sock);
|
2022-08-10 15:31:32 +00:00
|
|
|
p->sock = s;
|
|
|
|
s->data = p;
|
|
|
|
|
2022-09-30 07:36:09 +00:00
|
|
|
p->to_send = 0;
|
|
|
|
p->errs = 0;
|
|
|
|
|
|
|
|
if (sk_open(s) < 0)
|
2022-12-10 12:23:50 +00:00
|
|
|
{
|
2022-08-10 15:31:32 +00:00
|
|
|
log(L_ERR "Cannot open listening socket");
|
2022-12-10 12:23:50 +00:00
|
|
|
snmp_down(p);
|
|
|
|
}
|
2022-09-30 07:36:09 +00:00
|
|
|
|
2022-12-10 12:22:37 +00:00
|
|
|
snmp_log("socket ready!, trying to connect");
|
2022-08-10 15:31:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
snmp_connected(sock *sk)
|
|
|
|
{
|
|
|
|
struct snmp_proto *p = sk->data;
|
2022-12-10 12:22:37 +00:00
|
|
|
snmp_log("snmp_connected() connection created");
|
2023-09-04 07:25:51 +00:00
|
|
|
|
|
|
|
p->state = SNMP_OPEN;
|
|
|
|
|
2023-07-26 12:34:01 +00:00
|
|
|
byte *buf UNUSED = sk->rpos;
|
2022-08-10 15:31:32 +00:00
|
|
|
|
|
|
|
sk->rx_hook = snmp_rx;
|
2023-09-04 11:46:02 +00:00
|
|
|
sk->tx_hook = NULL;
|
|
|
|
//sk->tx_hook = snmp_tx;
|
2022-08-10 15:31:32 +00:00
|
|
|
|
|
|
|
snmp_start_subagent(p);
|
2022-12-10 12:23:50 +00:00
|
|
|
|
|
|
|
// TODO ping interval
|
|
|
|
tm_set(p->ping_timer, 15 S);
|
2022-08-10 15:31:32 +00:00
|
|
|
}
|
2022-08-02 14:04:25 +00:00
|
|
|
|
2022-08-10 15:31:32 +00:00
|
|
|
static void
|
2022-09-30 07:36:09 +00:00
|
|
|
snmp_sock_err(sock *sk, int err)
|
2022-08-10 15:31:32 +00:00
|
|
|
{
|
2022-12-10 12:22:37 +00:00
|
|
|
snmp_log("snmp_sock_err() %s - err no: %d", strerror(err), err);
|
2022-09-20 12:28:57 +00:00
|
|
|
struct snmp_proto *p = sk->data;
|
2023-07-26 12:34:01 +00:00
|
|
|
p->errs++;
|
|
|
|
|
2022-09-30 07:36:09 +00:00
|
|
|
tm_stop(p->ping_timer);
|
2022-09-20 12:28:57 +00:00
|
|
|
|
2022-09-30 07:36:09 +00:00
|
|
|
rfree(p->sock);
|
|
|
|
p->sock = NULL;
|
2022-09-20 12:28:57 +00:00
|
|
|
|
2022-11-29 15:30:20 +00:00
|
|
|
rfree(p->lock);
|
|
|
|
p->lock = NULL;
|
|
|
|
|
2022-12-10 12:22:37 +00:00
|
|
|
snmp_log("changing proto_snmp state to ERR[OR]");
|
2023-08-08 17:00:54 +00:00
|
|
|
p->state = SNMP_ERR;
|
|
|
|
// snmp_shutdown((struct proto *) p);
|
2022-12-17 17:16:19 +00:00
|
|
|
|
2022-12-10 12:23:50 +00:00
|
|
|
// TODO ping interval
|
2023-07-26 12:34:01 +00:00
|
|
|
tm_start(p->startup_timer, 4 S);
|
2022-08-02 14:04:25 +00:00
|
|
|
}
|
|
|
|
|
2022-08-01 11:01:49 +00:00
|
|
|
static int
|
|
|
|
snmp_start(struct proto *P)
|
|
|
|
{
|
2022-12-10 12:22:37 +00:00
|
|
|
snmp_log("snmp_start() - starting timer (almost)");
|
2022-08-10 15:31:32 +00:00
|
|
|
struct snmp_proto *p = (void *) P;
|
2022-09-20 12:28:57 +00:00
|
|
|
struct snmp_config *cf = (struct snmp_config *) P->cf;
|
2022-08-10 15:31:32 +00:00
|
|
|
|
2022-09-30 07:36:09 +00:00
|
|
|
p->startup_timer = tm_new_init(p->p.pool, snmp_startup_timeout, p, 0, 0);
|
|
|
|
|
|
|
|
p->to_send = 0;
|
|
|
|
p->errs = 0;
|
|
|
|
|
|
|
|
p->pool = lp_new(p->p.pool);
|
|
|
|
p->bgp_trie = f_new_trie(p->pool, cf->bonds);
|
|
|
|
|
2022-12-10 17:08:00 +00:00
|
|
|
init_list(&p->register_queue);
|
|
|
|
init_list(&p->bgp_registered);
|
2023-08-08 17:00:54 +00:00
|
|
|
p->partial_response = NULL;
|
2022-12-10 17:08:00 +00:00
|
|
|
|
2022-08-10 15:31:32 +00:00
|
|
|
p->ping_timer = tm_new_init(p->p.pool, snmp_ping_timer, p, 0, 0);
|
2022-12-10 12:23:50 +00:00
|
|
|
// tm_set(p->ping_timer, current_time() + 2 S);
|
2022-08-10 15:31:32 +00:00
|
|
|
|
2022-09-06 16:04:29 +00:00
|
|
|
/* create copy of bonds to bgp */
|
2022-09-20 12:28:57 +00:00
|
|
|
HASH_INIT(p->bgp_hash, p->p.pool, 10);
|
2022-09-06 16:04:29 +00:00
|
|
|
|
2022-09-30 07:36:09 +00:00
|
|
|
struct snmp_bond *b;
|
2022-09-06 16:04:29 +00:00
|
|
|
WALK_LIST(b, cf->bgp_entries)
|
|
|
|
{
|
2022-09-20 12:28:57 +00:00
|
|
|
struct bgp_config *bc = (struct bgp_config *) b->proto;
|
2022-09-06 16:04:29 +00:00
|
|
|
if (bc && !ipa_zero(bc->remote_ip))
|
|
|
|
{
|
2022-09-20 12:28:57 +00:00
|
|
|
struct snmp_bgp_peer *peer =
|
|
|
|
mb_allocz(p->p.pool, sizeof(struct snmp_bgp_peer));
|
2022-09-30 07:36:09 +00:00
|
|
|
peer->config = (struct bgp_config *) b->proto;
|
2022-09-20 12:28:57 +00:00
|
|
|
peer->peer_ip = bc->remote_ip;
|
2022-09-06 16:04:29 +00:00
|
|
|
|
2023-07-26 12:34:01 +00:00
|
|
|
struct net_addr net;
|
|
|
|
net_fill_ip4(&net, ipa_to_ip4(peer->peer_ip), IP4_MAX_PREFIX_LENGTH);
|
2022-09-30 07:36:09 +00:00
|
|
|
|
2023-07-26 12:34:01 +00:00
|
|
|
trie_add_prefix(p->bgp_trie, &net, IP4_MAX_PREFIX_LENGTH, IP4_MAX_PREFIX_LENGTH);
|
2022-09-30 07:36:09 +00:00
|
|
|
|
2022-09-20 12:28:57 +00:00
|
|
|
HASH_INSERT(p->bgp_hash, SNMP_HASH, peer);
|
2022-09-06 16:04:29 +00:00
|
|
|
}
|
|
|
|
}
|
2022-09-30 07:36:09 +00:00
|
|
|
|
2022-12-10 12:23:50 +00:00
|
|
|
snmp_startup(p);
|
2022-09-30 07:36:09 +00:00
|
|
|
return PS_START;
|
2022-08-01 11:01:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
snmp_reconfigure(struct proto *P, struct proto_config *CF)
|
|
|
|
{
|
2022-08-10 15:31:32 +00:00
|
|
|
struct snmp_proto *p = SKIP_BACK(struct snmp_proto, p, P);
|
2022-12-10 12:23:50 +00:00
|
|
|
const struct snmp_config *cf = SKIP_BACK(struct snmp_config, cf, CF);
|
2022-08-10 15:31:32 +00:00
|
|
|
|
|
|
|
p->local_ip = cf->local_ip;
|
|
|
|
p->remote_ip = cf->remote_ip;
|
|
|
|
p->local_port = cf->local_port;
|
|
|
|
p->remote_port = cf->remote_port;
|
2022-09-20 12:28:57 +00:00
|
|
|
p->local_as = cf->local_as;
|
2022-08-10 15:31:32 +00:00
|
|
|
p->timeout = 15;
|
|
|
|
|
2022-12-10 17:08:00 +00:00
|
|
|
/* workaround to make the registration happen */
|
|
|
|
p->register_to_ack = 1;
|
|
|
|
|
2022-09-06 16:04:29 +00:00
|
|
|
/* TODO walk all bind protocols and find their (new) IP
|
|
|
|
to update HASH table */
|
2022-12-10 12:22:37 +00:00
|
|
|
snmp_log("snmp_reconfigure() lip: %I:%u rip: %I:%u",
|
2022-08-10 15:31:32 +00:00
|
|
|
p->local_ip, p->local_port, p->remote_ip, p->remote_port);
|
2022-12-10 12:22:37 +00:00
|
|
|
|
2022-09-30 07:36:09 +00:00
|
|
|
return 1;
|
2022-08-01 11:01:49 +00:00
|
|
|
}
|
2022-09-30 07:36:09 +00:00
|
|
|
|
2023-07-26 12:34:01 +00:00
|
|
|
static void
|
|
|
|
snmp_show_proto_info(struct proto *P)
|
2022-08-01 11:01:49 +00:00
|
|
|
{
|
2022-11-29 15:30:20 +00:00
|
|
|
struct snmp_proto *sp = (void *) P;
|
2022-08-02 14:04:25 +00:00
|
|
|
struct snmp_config *c = (void *) P->cf;
|
2022-08-01 11:01:49 +00:00
|
|
|
|
2022-11-29 15:30:20 +00:00
|
|
|
cli_msg(-1006, "");
|
|
|
|
cli_msg(-1006, " snmp status %s", snmp_state[sp->state]);
|
|
|
|
cli_msg(-1006, "");
|
2022-08-02 14:04:25 +00:00
|
|
|
cli_msg(-1006, " BGP peers");
|
|
|
|
struct snmp_bond *bond;
|
|
|
|
WALK_LIST(bond, c->bgp_entries)
|
2022-08-01 11:01:49 +00:00
|
|
|
{
|
2022-08-02 14:04:25 +00:00
|
|
|
struct proto_config *cf = P->cf;
|
|
|
|
struct bgp_config *bcf = (struct bgp_config *) cf;
|
|
|
|
struct proto *p = cf->proto;
|
|
|
|
struct bgp_proto *bp = (struct bgp_proto *) cf->proto;
|
|
|
|
struct bgp_conn *conn = bp->conn;
|
|
|
|
|
|
|
|
cli_msg(-1006, " name: %s", cf->name);
|
|
|
|
cli_msg(-1006, "");
|
2023-08-08 17:45:50 +00:00
|
|
|
cli_msg(-1006, " loc. identifier: %I4", bp->local_id);
|
|
|
|
cli_msg(-1006, " rem. identifier: %I4", bp->remote_id);
|
2022-12-06 15:32:26 +00:00
|
|
|
cli_msg(-1006, " admin status: %s", (p->disabled) ? "stop" :
|
|
|
|
"start");
|
2022-09-20 12:28:57 +00:00
|
|
|
cli_msg(-1006, " version: 4");
|
2023-08-08 17:45:50 +00:00
|
|
|
cli_msg(-1006, " local ip: %I4", bcf->local_ip);
|
|
|
|
cli_msg(-1006, " remote ip: %I4", bcf->remote_ip);
|
|
|
|
cli_msg(-1006, " local port: %I4", bcf->local_port);
|
|
|
|
cli_msg(-1006, " remote port: %I4", bcf->remote_port);
|
2022-08-10 15:31:32 +00:00
|
|
|
/*
|
2022-08-02 14:04:25 +00:00
|
|
|
if (conn) {
|
|
|
|
cli_msg(-1006, " state: %u", conn->state);
|
|
|
|
cli_msg(-1006, " remote as: %u", conn->remote_caps->as4_number);
|
|
|
|
}
|
2022-08-10 15:31:32 +00:00
|
|
|
*/
|
2022-08-02 14:04:25 +00:00
|
|
|
cli_msg(-1006, " in updates: %u", bp->stats.rx_updates);
|
|
|
|
cli_msg(-1006, " out updates: %u", bp->stats.tx_updates);
|
|
|
|
cli_msg(-1006, " in total: %u", bp->stats.rx_messages);
|
|
|
|
cli_msg(-1006, " out total: %u", bp->stats.tx_messages);
|
|
|
|
cli_msg(-1006, " fsm transitions: %u",
|
|
|
|
bp->stats.fsm_established_transitions);
|
|
|
|
|
2023-08-08 17:45:50 +00:00
|
|
|
cli_msg(-1006, " fsm total time: -- (0)");
|
2022-08-02 14:04:25 +00:00
|
|
|
cli_msg(-1006, " retry interval: %u", bcf->connect_retry_time);
|
|
|
|
|
2022-08-10 15:31:32 +00:00
|
|
|
/*
|
2022-08-02 14:04:25 +00:00
|
|
|
if (conn) {
|
|
|
|
cli_msg(-1006, " hold time: %u", conn->hold_time);
|
|
|
|
cli_msg(-1006, " keep alive: %u", conn->keepalive_time );
|
2022-08-01 11:01:49 +00:00
|
|
|
}
|
2022-08-10 15:31:32 +00:00
|
|
|
*/
|
2022-08-02 14:04:25 +00:00
|
|
|
|
|
|
|
cli_msg(-1006, " hold configurated: %u", bcf->hold_time );
|
|
|
|
cli_msg(-1006, " keep alive config: %u", bcf->keepalive_time );
|
|
|
|
|
2023-08-08 17:45:50 +00:00
|
|
|
cli_msg(-1006, " min AS origin. int.: -- (0)");
|
2022-08-02 14:04:25 +00:00
|
|
|
cli_msg(-1006, " min route advertisement: %u", 0 );
|
|
|
|
cli_msg(-1006, " in update elapsed time: %u", 0 );
|
|
|
|
|
|
|
|
if (!conn)
|
|
|
|
cli_msg(-1006, " no default connection");
|
|
|
|
|
|
|
|
cli_msg(-1006, " outgoinin_conn state %u", bp->outgoing_conn.state + 1);
|
|
|
|
cli_msg(-1006, " incoming_conn state: %u", bp->incoming_conn.state + 1);
|
2022-08-01 11:01:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-20 12:28:57 +00:00
|
|
|
static void
|
|
|
|
snmp_postconfig(struct proto_config *CF)
|
|
|
|
{
|
2023-07-26 12:34:01 +00:00
|
|
|
// walk the bgp protocols and cache their references
|
2022-09-20 12:28:57 +00:00
|
|
|
if (((struct snmp_config *) CF)->local_as == 0)
|
|
|
|
cf_error("local as not specified");
|
|
|
|
}
|
|
|
|
|
2022-08-10 15:31:32 +00:00
|
|
|
static void
|
|
|
|
snmp_ping_timer(struct timer *tm)
|
2022-08-01 11:01:49 +00:00
|
|
|
{
|
2022-12-10 17:08:00 +00:00
|
|
|
// snmp_log("snmp_ping_timer() ");
|
2022-09-30 07:36:09 +00:00
|
|
|
struct snmp_proto *p = tm->data;
|
2022-08-10 15:31:32 +00:00
|
|
|
|
2022-09-20 12:28:57 +00:00
|
|
|
if (p->state == SNMP_CONN)
|
|
|
|
{
|
|
|
|
snmp_ping(p);
|
|
|
|
}
|
2022-09-06 16:04:29 +00:00
|
|
|
|
2022-09-30 07:36:09 +00:00
|
|
|
//tm_set(tm, current_time() + (15 S));
|
|
|
|
tm_set(tm, current_time() + 15 S);
|
2022-09-20 12:28:57 +00:00
|
|
|
}
|
|
|
|
|
2022-08-10 15:31:32 +00:00
|
|
|
static int
|
|
|
|
snmp_shutdown(struct proto *P)
|
2022-08-01 11:01:49 +00:00
|
|
|
{
|
2022-12-10 17:08:00 +00:00
|
|
|
snmp_log("snmp_shutdown()");
|
2022-08-10 15:31:32 +00:00
|
|
|
struct snmp_proto *p = SKIP_BACK(struct snmp_proto, p, P);
|
2022-09-20 12:28:57 +00:00
|
|
|
|
|
|
|
tm_stop(p->ping_timer);
|
|
|
|
|
2023-08-08 17:45:50 +00:00
|
|
|
/* connection established -> close the connection */
|
2023-09-04 07:25:51 +00:00
|
|
|
if (p->state == SNMP_REGISTER ||
|
|
|
|
p->state == SNMP_CONN)
|
2022-12-17 17:16:19 +00:00
|
|
|
{
|
|
|
|
p->state = SNMP_STOP;
|
|
|
|
|
|
|
|
/* startup time is reused for connection closing */
|
|
|
|
p->startup_timer->hook = snmp_stop_timeout;
|
|
|
|
|
2023-08-08 17:45:50 +00:00
|
|
|
// TODO timeout option
|
2022-12-17 17:16:19 +00:00
|
|
|
tm_set(p->startup_timer, 15 S);
|
|
|
|
|
|
|
|
snmp_stop_subagent(p);
|
|
|
|
|
|
|
|
return PS_STOP;
|
|
|
|
}
|
|
|
|
/* no connection to close */
|
|
|
|
else
|
|
|
|
{
|
|
|
|
snmp_cleanup(p);
|
|
|
|
return PS_DOWN;
|
|
|
|
}
|
2022-08-01 11:01:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct protocol proto_snmp = {
|
|
|
|
.name = "Snmp",
|
|
|
|
.template = "snmp%d",
|
|
|
|
.channel_mask = NB_ANY,
|
|
|
|
.proto_size = sizeof(struct snmp_proto),
|
|
|
|
.config_size = sizeof(struct snmp_config),
|
2022-09-20 12:28:57 +00:00
|
|
|
.postconfig = snmp_postconfig,
|
2022-08-01 11:01:49 +00:00
|
|
|
.init = snmp_init,
|
|
|
|
.start = snmp_start,
|
|
|
|
.reconfigure = snmp_reconfigure,
|
2022-08-10 15:31:32 +00:00
|
|
|
.shutdown = snmp_shutdown,
|
2022-08-01 11:01:49 +00:00
|
|
|
.show_proto_info = snmp_show_proto_info,
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
2022-08-10 15:31:32 +00:00
|
|
|
snmp_build(void)
|
2022-08-01 11:01:49 +00:00
|
|
|
{
|
|
|
|
proto_build(&proto_snmp);
|
|
|
|
}
|
2023-09-04 07:25:51 +00:00
|
|
|
|