0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-12-23 10:11:53 +00:00
bird/proto/snmp/snmp_utils.c

592 lines
13 KiB
C
Raw Normal View History

2022-11-22 13:16:09 +00:00
/*
* BIRD -- Simple Network Management Protocol (SNMP) helper functions
*
* (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.
*
*/
#include "snmp_utils.h"
/**
2022-12-17 17:16:19 +00:00
* snmp_is_oid_empty - check if oid is null-valued
2022-11-22 13:16:09 +00:00
* @oid: object identifier to check
*
* Test if the oid header is full of zeroes. For @oid NULL returns 0.
*/
int
2023-07-26 12:02:23 +00:00
snmp_is_oid_empty(const struct oid *oid)
2022-11-22 13:16:09 +00:00
{
if (oid != NULL)
return oid->n_subid == 0 && oid->prefix == 0 && oid->include == 0;
else
return 0;
}
/**
* snmp_pkt_len - returns size of SNMP packet payload (without header)
* @buf: packet first byte
* @pkt: first byte past packet end
*/
2023-07-26 12:02:23 +00:00
uint
snmp_pkt_len(byte *start, byte *end)
{
snmp_log("snmp_pkt_len start 0x%p end 0x%p res %u", start, end, (end - start)
- AGENTX_HEADER_SIZE);
return (end - start) - AGENTX_HEADER_SIZE;
}
/**
*
* used for copying oid to in buffer oid @dest
*/
void snmp_oid_copy(struct oid *dest, const struct oid *src)
{
STORE_U8(dest->n_subid, src->n_subid);
STORE_U8(dest->prefix, src->prefix);
STORE_U8(dest->include, src->include);
STORE_U8(dest->pad, 0);
for (int i = 0; i < src->n_subid; i++)
STORE_U32(dest->ids[i], src->ids[i]);
}
/**
*
*/
struct oid *
snmp_oid_duplicate(pool *pool, const struct oid *oid)
2022-11-22 13:16:09 +00:00
{
2023-07-26 12:02:23 +00:00
struct oid *res = mb_alloc(pool, snmp_oid_size(oid));
memcpy(res, oid, snmp_oid_size(oid));
return res;
2022-11-22 13:16:09 +00:00
}
2022-12-10 17:08:00 +00:00
/**
* create new null oid (blank)
* @p: pool hodling snmp_proto structure
*/
struct oid *
snmp_oid_blank(struct snmp_proto *p)
{
return mb_allocz(p->p.pool, sizeof(struct oid));
}
2023-07-26 12:02:23 +00:00
size_t
snmp_str_size_from_len(uint len)
{
return 4 + BIRD_ALIGN(len, 4);
}
2022-11-22 13:16:09 +00:00
/**
* snmp_str_size - return in packet size of supplied string
* @str: measured string
*
* Returned value is string length aligned to 4 byte with 32bit length
* annotation included.
*/
2023-07-26 12:02:23 +00:00
inline size_t
2022-11-22 13:16:09 +00:00
snmp_str_size(const char *str)
{
2023-07-26 12:02:23 +00:00
return snmp_str_size_from_len(strlen(str));
2022-11-22 13:16:09 +00:00
}
/**
* snmp_oid_size - measure size of oid in bytes
* @o: object identifier to use
*/
uint
2023-07-26 12:02:23 +00:00
snmp_oid_size(const struct oid *o)
2022-11-22 13:16:09 +00:00
{
2023-03-14 13:09:45 +00:00
return 4 + (o->n_subid * 4);
2022-11-22 13:16:09 +00:00
}
2022-12-10 17:08:00 +00:00
/**
* snmp_get_size - calculate size for allocation
* @n_subid: number of ids in oid
*/
inline size_t
snmp_oid_sizeof(uint n_subid)
{
return sizeof(struct oid) + n_subid * sizeof(u32);
}
2023-07-26 12:02:23 +00:00
uint snmp_varbind_hdr_size_from_oid(struct oid *oid)
{
return snmp_oid_size(oid) + 4;
}
2022-11-22 13:16:09 +00:00
/**
* snmp_vb_size - measure size of varbind in bytes
* @vb: variable binding to use
*/
uint
2023-07-26 12:02:23 +00:00
snmp_varbind_header_size(struct agentx_varbind *vb)
2022-11-22 13:16:09 +00:00
{
2023-07-26 12:02:23 +00:00
return snmp_varbind_hdr_size_from_oid(&vb->name);
}
uint
snmp_varbind_size(struct agentx_varbind *vb, int byte_ord)
{
uint hdr_size = snmp_varbind_header_size(vb);
int s = agentx_type_size(vb->type);
if (s >= 0)
return hdr_size + (uint) s;
void *data = ((void *) vb) + hdr_size;
if (vb->type == AGENTX_OBJECT_ID)
return hdr_size + snmp_oid_size((struct oid *) data);
/*
* Load length of octet string
* (AGENTX_OCTET_STRING, AGENTX_IP_ADDRESS, AGENTX_OPAQUE)
*/
return hdr_size + snmp_str_size_from_len(LOAD_PTR(data, byte_ord));
}
inline uint
snmp_context_size(struct agentx_context *c)
{
return (c && c->length) ? snmp_str_size_from_len(c->length) : 0;
2022-11-22 13:16:09 +00:00
}
struct agentx_varbind *
snmp_create_varbind(byte *buf, struct oid *oid)
{
struct agentx_varbind *vb = (void*) buf;
2023-07-26 12:02:23 +00:00
vb->pad = 0;
snmp_oid_copy(&vb->name, oid);
2022-11-22 13:16:09 +00:00
return vb;
}
2023-07-26 12:02:23 +00:00
byte *
snmp_fix_varbind(struct agentx_varbind *vb, struct oid *new)
2022-11-22 13:16:09 +00:00
{
memcpy(&vb->name, new, snmp_oid_size(new));
2023-07-26 12:02:23 +00:00
return (void *) vb + snmp_varbind_header_size(vb);
2022-11-22 13:16:09 +00:00
}
/**
* snmp_oid_ip4_index - check IPv4 address validity in oid
* @o: object identifier holding ip address
* @start: index of first address id
*/
int
2023-07-26 12:02:23 +00:00
snmp_valid_ip4_index(const struct oid *o, uint start)
2022-11-22 13:16:09 +00:00
{
if (start + 3 < o->n_subid)
return snmp_valid_ip4_index_unsafe(o, start);
else
2023-07-26 12:34:01 +00:00
return 0;
2022-11-22 13:16:09 +00:00
}
/**
* snmp_valid_ip4_index_unsafe - check validity of IPv4 address in oid
* @o: object identifier holding ip address
* @start: index of first address id
*
* This function is unsafe - no checks of object identifier ids
* length sufficiency is done.
*/
int
2023-07-26 12:02:23 +00:00
snmp_valid_ip4_index_unsafe(const struct oid *o, uint start)
2022-11-22 13:16:09 +00:00
{
for (int i = 0; i < 4; i++)
if (o->ids[start + i] >= 256)
2023-07-26 12:34:01 +00:00
return 0;
2023-03-24 14:00:54 +00:00
2023-07-26 12:34:01 +00:00
return 1;
2022-11-22 13:16:09 +00:00
}
2023-07-26 12:02:23 +00:00
byte *
snmp_put_nstr(byte *buf, const char *str, uint len)
{
uint alen = BIRD_ALIGN(len, 4);
// TODO check for '\0' in the str bytes?
STORE_PTR(buf, len);
buf += 4;
memcpy(buf, str, len);
/* Insert zero padding in the gap at the end */
for (uint i = 0; i < alen - len; i++)
buf[len + i] = 0x00;
return buf + alen;
}
2022-11-22 13:16:09 +00:00
/**
* snmp_put_str - put string into SNMP PDU transcieve buffer
* @buf: pointer to first unoccupied buffer byte
* @str: string to place
*
* Handles all conditions specified by RFC, namely string length annotation
* and padding 4 byte alignment with zeroes. Return NULL if string is too large
* for SNMP message.
*/
byte *
snmp_put_str(byte *buf, const char *str)
{
uint len = strlen(str);
2023-07-26 12:02:23 +00:00
return snmp_put_nstr(buf, str, len);
2022-11-22 13:16:09 +00:00
}
2023-03-24 14:00:54 +00:00
byte *
2023-07-26 12:02:23 +00:00
snmp_put_ip4(byte *buf, ip4_addr addr)
2023-03-24 14:00:54 +00:00
{
/* octet string has size 4 bytes */
STORE_PTR(buf, 4);
2023-07-26 12:02:23 +00:00
put_u32(buf+4, ip4_to_u32(addr));
2023-03-24 14:00:54 +00:00
return buf + 8;
}
2022-11-22 13:16:09 +00:00
byte *
snmp_put_blank(byte *buf)
{
STORE_PTR(buf, 0);
return buf + 4;
}
/**
* snmp_put_oid - put oid into SNMP PDU transcieve buffer
* @buf: pointer to first free buffer byte
* @oid: object identifier to use
*/
byte *
snmp_put_oid(byte *buf, struct oid *oid)
{
put_u8(buf, oid->n_subid);
put_u8(++buf, oid->prefix);
put_u8(++buf, oid->include);
2023-07-26 12:34:01 +00:00
put_u8(++buf, 0); // padding
2022-11-22 13:16:09 +00:00
/* last increment */
++buf;
/* copy OID data */
#ifdef SNMP_NATIVE
for (uint i = 0; i < oid->n_subid; i++)
*(((u32 *) buf) + i) = oid->ids[i];
#else
2023-03-14 13:09:45 +00:00
put_u32s(buf, oid->ids, oid->n_subid * 4);
2022-11-22 13:16:09 +00:00
#endif
2023-03-14 13:09:45 +00:00
return buf + oid->n_subid * 4;
2022-11-22 13:16:09 +00:00
}
/**
* snmp_put_fbyte - put one padded byte to SNMP PDU transcieve buffer
* @buf: pointer to free buffer byte
* @data: byte to use
*
* Put @data into buffer @buf with 3B zeroed padding.
*/
/* paste data at first byte in message
* with 3B of padding
*/
byte *
snmp_put_fbyte(byte *buf, u8 data)
{
2022-12-10 17:08:00 +00:00
// log(L_INFO "paste_fbyte()");
2022-11-22 13:16:09 +00:00
put_u8(buf, data);
put_u24(++buf, 0); // PADDING
return buf + 3;
}
void
snmp_oid_ip4_index(struct oid *o, uint start, ip4_addr addr)
{
u32 temp = ip4_to_u32(addr);
2023-07-26 12:02:23 +00:00
STORE_U32(o->ids[start], temp >> 24);
STORE_U32(o->ids[start + 1], (temp >> 16) & 0xFF);
STORE_U32(o->ids[start + 2], (temp >> 8) & 0xFF);
STORE_U32(o->ids[start + 3], temp & 0xFF);
2022-11-22 13:16:09 +00:00
}
void snmp_oid_dump(struct oid *oid)
{
log(L_WARN "OID DUMP ========");
if (oid == NULL)
{
log(L_WARN "is eqaul to NULL");
log(L_WARN "OID DUMP END ====");
2023-03-14 13:09:45 +00:00
log(L_WARN ".");
2022-11-22 13:16:09 +00:00
return;
}
else if (snmp_is_oid_empty(oid))
{
log(L_WARN "is empty");
log(L_WARN "OID DUMP END ====");
2023-03-14 13:09:45 +00:00
log(L_WARN ".");
2022-11-22 13:16:09 +00:00
return;
}
log(L_WARN " #ids: %4u prefix %3u include: %5s",
oid->n_subid, oid->prefix, (oid->include)? "true" : "false");
log(L_WARN "IDS -------------");
for (int i = 0; i < oid->n_subid; i++)
log(L_WARN " %2u: %11u ~ 0x%08X", i, oid->ids[i], oid->ids[i]);
log(L_WARN "OID DUMP END ====");
log(L_WARN);
}
2022-11-29 15:30:20 +00:00
/** snmp_oid_compare - find the lexicographical order relation between @left and @right
2023-03-24 14:00:54 +00:00
* both @left and @right has to be non-blank.
2022-11-29 15:30:20 +00:00
* @left: left object id relation operant
* @right: right object id relation operant
*
2023-03-24 14:00:54 +00:00
* function returns 0 if left == right,
* -1 if left < right,
* and 1 otherwise
2022-11-29 15:30:20 +00:00
*/
int
2023-07-26 12:02:23 +00:00
snmp_oid_compare(const struct oid *left, const struct oid *right)
2022-11-29 15:30:20 +00:00
{
const u32 INTERNET_PREFIX[] = {1, 3, 6, 1};
2023-03-24 14:00:54 +00:00
2022-11-29 15:30:20 +00:00
if (left->prefix == 0 && right->prefix == 0)
goto test_ids;
if (right->prefix == 0)
2023-03-24 14:00:54 +00:00
return (-1) * snmp_oid_compare(right, left);
2022-11-29 15:30:20 +00:00
if (left->prefix == 0)
{
for (int i = 0; i < 4; i++)
if (left->ids[i] < INTERNET_PREFIX[i])
return -1;
else if (left->ids[i] > INTERNET_PREFIX[i])
return 1;
for (int i = 0; i < MIN(left->n_subid - 4, right->n_subid); i++)
if (left->ids[i + 4] < right->ids[i])
return -1;
else if (left->ids[i + 4] > right->ids[i])
return 1;
goto all_same;
}
if (left->prefix < right->prefix)
return -1;
else if (left->prefix > right->prefix)
return 1;
test_ids:
for (int i = 0; i < MIN(left->n_subid, right->n_subid); i++)
if (left->ids[i] < right->ids[i])
return -1;
else if (left->ids[i] > right->ids[i])
return 1;
all_same:
/* shorter sequence is before longer in lexicografical order */
if (left->n_subid < right->n_subid)
return -1;
else if (left->n_subid > right->n_subid)
return 1;
else
return 0;
}
2022-12-10 17:08:00 +00:00
struct snmp_register *
snmp_register_create(struct snmp_proto *p, u8 mib_class)
{
struct snmp_register *r = mb_alloc(p->p.pool, sizeof(struct snmp_register));
r->n.prev = r->n.next = NULL;
r->session_id = p->session_id;
/* will be incremented by SNMP_SESSION() macro during packet assembly */
2022-12-10 17:08:00 +00:00
r->transaction_id = p->transaction_id;
r->packet_id = p->packet_id + 1;
2022-12-10 17:08:00 +00:00
r->mib_class = mib_class;
return r;
}
int
snmp_register_same(struct snmp_register *r, struct agentx_header *h, u8 class)
{
return
(r->mib_class == class) &&
(r->session_id == h->session_id) &&
(r->transaction_id == h->transaction_id) &&
(r->packet_id == h->packet_id);
}
void
snmp_register_ack(struct snmp_proto *p, struct agentx_header *h)
{
2022-12-17 17:16:19 +00:00
snmp_log("snmp_register_ack()");
snmp_log("got sid: %u tid: %u pid: %u", h->session_id, h->transaction_id,
h->packet_id);
2022-12-10 17:08:00 +00:00
struct snmp_register *reg;
WALK_LIST(reg, p->register_queue)
{
// TODO add support for more mib trees (other than BGP)
snmp_log("checking registration request sid: %u tid: %u pid: %u",
reg->session_id, reg->transaction_id, reg->packet_id);
2022-12-10 17:08:00 +00:00
if (snmp_register_same(reg, h, SNMP_BGP4_MIB))
{
struct snmp_registered_oid *ro = \
mb_alloc(p->p.pool, sizeof(struct snmp_registered_oid));
ro->n.prev = ro->n.next = NULL;
ro->oid = reg->oid;
rem_node(&reg->n);
2022-12-17 17:16:19 +00:00
mb_free(reg);
2022-12-10 17:08:00 +00:00
p->register_to_ack--;
add_tail(&p->bgp_registered, &ro->n);
2022-12-17 17:16:19 +00:00
snmp_log(" register note find %u", list_length(&p->bgp_registered));
2022-12-10 17:08:00 +00:00
return;
}
}
2022-12-17 17:16:19 +00:00
snmp_log("unknown registration");
}
void
snmp_dump_packet(byte *pkt, uint size)
{
snmp_log("dump");
2023-03-14 13:09:45 +00:00
for (uint i = 0; i < size; i += 4)
2022-12-17 17:16:19 +00:00
snmp_log("pkt [%d] 0x%02x%02x%02x%02x", i, pkt[i],pkt[i+1],pkt[i+2],pkt[i+3]);
snmp_log("end dump");
2022-12-10 17:08:00 +00:00
}
2023-07-26 12:02:23 +00:00
/*
* Returns length of agentx_type @type in bytes.
* Variable length types result in -1.
*/
int
agentx_type_size(enum agentx_type type)
{
/*
* AGENTX_NULL, AGENTX_NO_SUCH_OBJECT, AGENTX_NO_SUCH_INSTANCE,
* AGENTX_END_OF_MIB_VIEW
*/
if (type >= AGENTX_NO_SUCH_OBJECT || type == AGENTX_NULL)
return 0;
/* AGENTX_INTEGER, AGENTX_COUNTER_32, AGENTX_GAUGE_32, AGENTX_TIME_TICKS */
if (type >= AGENTX_COUNTER_32 && type <= AGENTX_TIME_TICKS ||
type == AGENTX_INTEGER)
return 4;
/* AGENTX_COUNTER_64 */
if (type == AGENTX_COUNTER_64)
return 8;
/* AGENTX_OBJECT_ID, AGENTX_OCTET_STRING, AGENTX_IP_ADDRESS, AGENTX_OPAQUE */
else
return -1;
}
static inline byte *
snmp_varbind_type32(struct agentx_varbind *vb, uint size, enum agentx_type type, u32 val)
{
ASSUME(agentx_type_size(type) == 4); /* type has 4B representation */
if (size < (uint) agentx_type_size(type))
{
snmp_log("varbind type32 returned NULL");
return NULL;
}
vb->type = type;
u32 *data = SNMP_VB_DATA(vb);
snmp_log("varbind type32 vb data 0x%p (from vb 0x%p)", data, (void *) vb);
*data = val;
return (byte *)(data + 1);
}
inline byte *
snmp_varbind_int(struct agentx_varbind *vb, uint size, u32 val)
{
return snmp_varbind_type32(vb, size, AGENTX_INTEGER, val);
}
inline byte *
snmp_varbind_counter32(struct agentx_varbind *vb, uint size, u32 val)
{
return snmp_varbind_type32(vb, size, AGENTX_COUNTER_32, val);
}
inline byte *
snmp_varbind_ticks(struct agentx_varbind *vb, uint size, u32 val)
{
return snmp_varbind_type32(vb, size, AGENTX_TIME_TICKS, val);
}
2023-07-26 12:02:23 +00:00
inline byte *
snmp_varbind_gauge32(struct agentx_varbind *vb, uint size, s64 val)
{
return snmp_varbind_type32(vb, size, AGENTX_GAUGE_32,
MAX(0, MIN(val, UINT32_MAX)));
}
inline byte *
snmp_varbind_ip4(struct agentx_varbind *vb, uint size, ip4_addr addr)
{
if (size < snmp_str_size_from_len(4))
{
snmp_log("varbind ip4 NULL");
return NULL;
}
vb->type = AGENTX_IP_ADDRESS;
snmp_log("snmp_varbind_ip4 vb data 0x%p (from vb 0x%p)", SNMP_VB_DATA(vb), (void
*) vb);
return snmp_put_ip4(SNMP_VB_DATA(vb), addr);
}
inline byte *
snmp_varbind_nstr(struct agentx_varbind *vb, uint size, const char *str, uint len)
{
if (size < snmp_str_size_from_len(len))
{
snmp_log("varbind nstr NULL");
return NULL;
}
vb->type = AGENTX_OCTET_STRING;
//die("snmp_varbind_nstr() %p.data = %p", vb, SNMP_VB_DATA(vb));
snmp_log("snmp_varbind_nstr vb data 0x%p (from vb 0x%p)", SNMP_VB_DATA(vb), (void *) vb);
//snmp_log("snmp_varbind_nstr() %p.data = %p", vb, SNMP_VB_DATA(vb));
return snmp_put_nstr(SNMP_VB_DATA(vb), str, len);
}
inline enum agentx_type
snmp_search_res_to_type(enum snmp_search_res r)
{
ASSUME(r != SNMP_SEARCH_OK);
static enum agentx_type type_arr[] = {
[SNMP_SEARCH_NO_OBJECT] = AGENTX_NO_SUCH_OBJECT,
[SNMP_SEARCH_NO_INSTANCE] = AGENTX_NO_SUCH_INSTANCE,
[SNMP_SEARCH_END_OF_VIEW] = AGENTX_END_OF_MIB_VIEW,
};
return type_arr[r];
}