1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
|
/*
* Copyright (C) 1996-2026 The Squid Software Foundation and contributors
*
* Squid software is distributed under GPLv2+ license and includes
* contributions from numerous individuals and organizations.
* Please see the COPYING and CONTRIBUTORS files for details.
*/
/***********************************************************
Copyright 1988, 1989 by Carnegie Mellon University
All Rights Reserved
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in
supporting documentation, and that the name of CMU not be
used in advertising or publicity pertaining to distribution of the
software without specific, written prior permission.
CMU DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
CMU BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
SOFTWARE.
******************************************************************/
#include "squid.h"
#if HAVE_UNISTD_H
#include <unistd.h>
#endif
#if HAVE_STDLIB_H
#include <stdlib.h>
#endif
#if HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#if HAVE_CTYPE_H
#include <ctype.h>
#endif
#if HAVE_GNUMALLOC_H
#include <gnumalloc.h>
#elif HAVE_MALLOC_H
#include <malloc.h>
#endif
#if HAVE_MEMORY_H
#include <memory.h>
#endif
#if HAVE_STRING_H
#include <string.h>
#endif
#if HAVE_STRINGS_H
#include <strings.h>
#endif
#if HAVE_BSTRING_H
#include <bstring.h>
#endif
#if HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif
#if HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif
#if HAVE_ARPA_INET_H
#include <arpa/inet.h>
#endif
#if HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
#if HAVE_NETDB_H
#include <netdb.h>
#endif
#include "asn1.h"
#include "snmp.h"
#include "parse.h"
#include "snmp_api.h"
#include "snmp_impl.h"
#include "snmp_pdu.h"
#include "snmp_session.h"
#include "snmp_vars.h"
#include "util.h"
static struct snmp_mib_tree *get_symbol(oid *objid, int objidlen, struct snmp_mib_tree *subtree, char *buf);
oid RFC1066_MIB[] = {1, 3, 6, 1, 2, 1};
unsigned char RFC1066_MIB_text[] = ".iso.org.dod.internet.mgmt.mib";
struct snmp_mib_tree *Mib;
void
init_mib(char *file)
{
if (Mib != NULL)
return;
if (file != NULL)
Mib = read_mib(file);
}
static struct snmp_mib_tree *
find_rfc1066_mib(struct snmp_mib_tree *root) {
oid *op = RFC1066_MIB;
struct snmp_mib_tree *tp;
int len;
for (len = sizeof(RFC1066_MIB) / sizeof(oid); len; len--, op++) {
for (tp = root; tp; tp = tp->next_peer) {
if (tp->subid == *op) {
root = tp->child_list;
break;
}
}
if (tp == NULL)
return NULL;
}
return root;
}
static int
lc_cmp(const char *s1, const char *s2)
{
char c1, c2;
while (*s1 && *s2) {
if (xisupper(*s1))
c1 = xtolower(*s1);
else
c1 = *s1;
if (xisupper(*s2))
c2 = xtolower(*s2);
else
c2 = *s2;
if (c1 != c2)
return ((c1 - c2) > 0 ? 1 : -1);
s1++;
s2++;
}
if (*s1)
return -1;
if (*s2)
return 1;
return 0;
}
static int
parse_subtree(struct snmp_mib_tree *subtree, char *input, oid *output, int *out_len)
{
char buf[128], *to = buf;
u_int subid = 0;
struct snmp_mib_tree *tp;
/*
* No empty strings. Can happen if there is a trailing '.' or two '.'s
* in a row, i.e. "..".
*/
if ((*input == '\0') ||
(*input == '.'))
return (0);
if (xisdigit(*input)) {
/*
* Read the number, then try to find it in the subtree.
*/
while (xisdigit(*input)) {
subid *= 10;
subid += *input++ - '0';
}
for (tp = subtree; tp; tp = tp->next_peer) {
if (tp->subid == subid)
goto found;
}
tp = NULL;
} else {
/*
* Read the name into a buffer.
*/
while ((*input != '\0') &&
(*input != '.')) {
*to++ = *input++;
}
*to = '\0';
/*
* Find the name in the subtree;
*/
for (tp = subtree; tp; tp = tp->next_peer) {
if (lc_cmp(tp->label, buf) == 0) {
subid = tp->subid;
goto found;
}
}
/*
* If we didn't find the entry, punt...
*/
if (tp == NULL) {
snmplib_debug(0, "sub-identifier not found: %s\n", buf);
return (0);
}
}
found:
if (subid > (u_int) MAX_SUBID) {
snmplib_debug(0, "sub-identifier too large: %s\n", buf);
return (0);
}
if ((*out_len)-- <= 0) {
snmplib_debug(0, "object identifier too long\n");
return (0);
}
*output++ = subid;
if (*input != '.')
return (1);
if ((*out_len =
parse_subtree(tp ? tp->child_list : NULL, ++input, output, out_len)) == 0)
return (0);
return (++*out_len);
}
/// \param out_len number of subid's in "output"
int
read_objid(char *input, oid *output, int *out_len)
{
struct snmp_mib_tree *root = Mib;
oid *op = output;
int i;
if (*input == '.')
input++;
else {
root = find_rfc1066_mib(root);
for (i = 0; i < sizeof(RFC1066_MIB) / sizeof(oid); i++) {
if ((*out_len)-- > 0)
*output++ = RFC1066_MIB[i];
else {
snmplib_debug(0, "object identifier too long\n");
return (0);
}
}
}
if (root == NULL) {
snmplib_debug(0, "Mib not initialized.\n");
return 0;
}
if ((*out_len = parse_subtree(root, input, output, out_len)) == 0)
return (0);
*out_len += output - op;
return (1);
}
/// \param objidlen number of subidentifiers
void
print_objid(oid *objid, int objidlen)
{
char buf[256];
struct snmp_mib_tree *subtree = Mib;
*buf = '.'; /* this is a fully qualified name */
get_symbol(objid, objidlen, subtree, buf + 1);
snmplib_debug(7, "%s\n", buf);
}
/// \param objidlen number of subidentifiers
void
sprint_objid(char *buf, oid *objid, int objidlen)
{
struct snmp_mib_tree *subtree = Mib;
*buf = '.'; /* this is a fully qualified name */
get_symbol(objid, objidlen, subtree, buf + 1);
}
static struct snmp_mib_tree *
get_symbol(oid *objid, int objidlen, struct snmp_mib_tree *subtree, char *buf)
{
struct snmp_mib_tree *return_tree = NULL;
for (; subtree; subtree = subtree->next_peer) {
if (*objid == subtree->subid) {
strcpy(buf, subtree->label);
goto found;
}
}
/* subtree not found */
while (objidlen--) { /* output rest of name, uninterpreted */
sprintf(buf, "%u.", *objid++);
while (*buf)
buf++;
}
*(buf - 1) = '\0'; /* remove trailing dot */
return NULL;
found:
if (objidlen > 1) {
while (*buf)
buf++;
*buf++ = '.';
*buf = '\0';
return_tree = get_symbol(objid + 1, objidlen - 1, subtree->child_list, buf);
}
if (return_tree != NULL)
return return_tree;
else
return subtree;
}
void
print_oid_nums(oid * O, int len)
{
int x;
for (x = 0; x < len; x++)
printf(".%u", O[x]);
}
|