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 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429
|
/*
* callback.c: A generic callback mechanism
*/
/* Portions of this file are subject to the following copyright(s). See
* the Net-SNMP's COPYING file for more details and other copyrights
* that may apply:
*/
/*
* Portions of this file are copyrighted by:
* Copyright 2003 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms specified in the COPYING file
* distributed with the Net-SNMP package.
*/
/** @defgroup callback A generic callback mechanism
* @ingroup library
*
* @{
*/
#include <net-snmp/net-snmp-config.h>
#include <sys/types.h>
#include <stdio.h>
#if HAVE_STDLIB_H
#include <stdlib.h>
#endif
#if HAVE_WINSOCK_H
#include <winsock.h>
#endif
#if HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif
#if HAVE_STRING_H
#include <string.h>
#else
#include <strings.h>
#endif
#if HAVE_DMALLOC_H
#include <dmalloc.h>
#endif
#include <net-snmp/types.h>
#include <net-snmp/output_api.h>
#include <net-snmp/utilities.h>
#include <net-snmp/library/callback.h>
#include <net-snmp/library/snmp_api.h>
static struct snmp_gen_callback
*thecallbacks[MAX_CALLBACK_IDS][MAX_CALLBACK_SUBIDS];
/*
* extermely simplistic locking, just to find problems were the
* callback list is modified while being traversed. Not intended
* to do any real protection, or in any way imply that this code
* has been evaluated for use in a multi-threaded environment.
*/
static int _lock = 0;
/*
* the chicken. or the egg. You pick.
*/
void
init_callbacks(void)
{
/*
* probably not needed? Should be full of 0's anyway?
*/
/*
* (poses a problem if you put init_callbacks() inside of
* init_snmp() and then want the app to register a callback before
* init_snmp() is called in the first place. -- Wes
*/
/*
* memset(thecallbacks, 0, sizeof(thecallbacks));
*/
DEBUGMSGTL(("callback", "initialized\n"));
}
/**
* This function registers a generic callback function. The major and
* minor values are used to set the new_callback function into a global
* static multi-dimensional array of type struct snmp_gen_callback.
* The function makes sure to append this callback function at the end
* of the link list, snmp_gen_callback->next.
*
* @param major is the SNMP callback major type used
* - SNMP_CALLBACK_LIBRARY
* - SNMP_CALLBACK_APPLICATION
*
* @param minor is the SNMP callback minor type used
* - SNMP_CALLBACK_POST_READ_CONFIG
* - SNMP_CALLBACK_STORE_DATA
* - SNMP_CALLBACK_SHUTDOWN
* - SNMP_CALLBACK_POST_PREMIB_READ_CONFIG
* - SNMP_CALLBACK_LOGGING
* - SNMP_CALLBACK_SESSION_INIT
*
* @param new_callback is the callback function that is registered.
*
* @param arg when not NULL is a void pointer used whenever new_callback
* function is exercised.
*
* @return
* Returns SNMPERR_GENERR if major is >= MAX_CALLBACK_IDS or minor is >=
* MAX_CALLBACK_SUBIDS or a snmp_gen_callback pointer could not be
* allocated, otherwise SNMPERR_SUCCESS is returned.
* - \#define MAX_CALLBACK_IDS 2
* - \#define MAX_CALLBACK_SUBIDS 16
*
* @see snmp_call_callbacks
* @see snmp_unregister_callback
*/
int
snmp_register_callback(int major, int minor, SNMPCallback * new_callback,
void *arg)
{
return netsnmp_register_callback( major, minor, new_callback, arg, 0);
}
int
netsnmp_register_callback(int major, int minor, SNMPCallback * new_callback,
void *arg, int priority)
{
struct snmp_gen_callback *newscp = NULL, *scp = NULL;
struct snmp_gen_callback **prevNext = &(thecallbacks[major][minor]);
if (major >= MAX_CALLBACK_IDS || minor >= MAX_CALLBACK_SUBIDS) {
return SNMPERR_GENERR;
}
if(++_lock > 1) {
snmp_log(LOG_WARNING,
"netsnmp_register_callback called while callbacks _locked\n");
netsnmp_assert(1==_lock);
}
if ((newscp = SNMP_MALLOC_STRUCT(snmp_gen_callback)) == NULL) {
--_lock;
return SNMPERR_GENERR;
} else {
newscp->priority = priority;
newscp->sc_client_arg = arg;
newscp->sc_callback = new_callback;
newscp->next = NULL;
for (scp = thecallbacks[major][minor]; scp != NULL;
scp = scp->next) {
if (newscp->priority < scp->priority) {
newscp->next = scp;
break;
}
prevNext = &(scp->next);
}
*prevNext = newscp;
DEBUGMSGTL(("callback", "registered (%d,%d) at %p with priority %d\n",
major, minor, newscp, priority));
--_lock;
return SNMPERR_SUCCESS;
}
}
/**
* This function calls the callback function for each registered callback of
* type major and minor.
*
* @param major is the SNMP callback major type used
*
* @param minor is the SNMP callback minor type used
*
* @param caller_arg is a void pointer which is sent in as the callback's
* serverarg parameter, if needed.
*
* @return Returns SNMPERR_GENERR if major is >= MAX_CALLBACK_IDS or
* minor is >= MAX_CALLBACK_SUBIDS, otherwise SNMPERR_SUCCESS is returned.
*
* @see snmp_register_callback
* @see snmp_unregister_callback
*/
int
snmp_call_callbacks(int major, int minor, void *caller_arg)
{
struct snmp_gen_callback *scp;
unsigned int count = 0;
if (major >= MAX_CALLBACK_IDS || minor >= MAX_CALLBACK_SUBIDS) {
return SNMPERR_GENERR;
}
if(++_lock > 1) {
#ifdef NETSNMP_PARANOID_LEVEL_HIGH
/*
* Notes:
* - this gets hit the first time a trap is sent after a new trap
* destination has been added (session init cb during send trap cb)
*/
snmp_log(LOG_WARNING,
"snmp_call_callbacks called while callbacks _locked\n");
netsnmp_assert(1==_lock);
#endif
}
DEBUGMSGTL(("callback", "START calling callbacks for maj=%d min=%d\n",
major, minor));
/*
* for each registered callback of type major and minor
*/
for (scp = thecallbacks[major][minor]; scp != NULL; scp = scp->next) {
/*
* skip unregistered callbacks
*/
if(NULL == scp->sc_callback)
continue;
DEBUGMSGTL(("callback", "calling a callback for maj=%d min=%d\n",
major, minor));
/*
* call them
*/
(*(scp->sc_callback)) (major, minor, caller_arg,
scp->sc_client_arg);
count++;
}
DEBUGMSGTL(("callback",
"END calling callbacks for maj=%d min=%d (%d called)\n",
major, minor, count));
--_lock;
return SNMPERR_SUCCESS;
}
int
snmp_count_callbacks(int major, int minor)
{
int count = 0;
struct snmp_gen_callback *scp;
if (major >= MAX_CALLBACK_IDS || minor >= MAX_CALLBACK_SUBIDS) {
return SNMPERR_GENERR;
}
for (scp = thecallbacks[major][minor]; scp != NULL; scp = scp->next) {
count++;
}
return count;
}
int
snmp_callback_available(int major, int minor)
{
if (major >= MAX_CALLBACK_IDS || minor >= MAX_CALLBACK_SUBIDS) {
return SNMPERR_GENERR;
}
if (thecallbacks[major][minor] != NULL) {
return SNMPERR_SUCCESS;
}
return SNMPERR_GENERR;
}
/**
* This function unregisters a specified callback function given a major
* and minor type.
*
* Note: no bound checking on major and minor.
*
* @param major is the SNMP callback major type used
*
* @param minor is the SNMP callback minor type used
*
* @param target is the callback function that will be unregistered.
*
* @param arg is a void pointer used for comparison against the registered
* callback's sc_client_arg variable.
*
* @param matchargs is an integer used to bypass the comparison of arg and the
* callback's sc_client_arg variable only when matchargs is set to 0.
*
*
* @return
* Returns the number of callbacks that were unregistered.
*
* @see snmp_register_callback
* @see snmp_call_callbacks
*/
int
snmp_unregister_callback(int major, int minor, SNMPCallback * target,
void *arg, int matchargs)
{
struct snmp_gen_callback *scp = thecallbacks[major][minor];
struct snmp_gen_callback **prevNext = &(thecallbacks[major][minor]);
int count = 0;
if(++_lock > 1) {
snmp_log(LOG_WARNING,
"snmp_unregister_callback called while callbacks _locked\n");
#ifdef NETSNMP_PARANOID_LEVEL_HIGH
/*
* Notes;
* - this gets hit at shutdown, during cleanup. No easy fix.
*/
netsnmp_assert(1==_lock);
#endif
}
while (scp != NULL) {
if ((scp->sc_callback == target) &&
(!matchargs || (scp->sc_client_arg == arg))) {
DEBUGMSGTL(("callback", "unregistering (%d,%d) at %p\n", major,
minor, scp));
if(_lock == 1) {
*prevNext = scp->next;
SNMP_FREE(scp);
scp = *prevNext;
}
else {
scp->sc_callback = NULL;
/** set cleanup flag? */
}
count++;
} else {
prevNext = &(scp->next);
scp = scp->next;
}
}
--_lock;
return count;
}
/**
* find and clear client args that match ptr
*
* @param ptr pointer to search for
* @param i callback id to start at
* @param j callback subid to start at
*/
int
netsnmp_callback_clear_client_arg(void *ptr, int i, int j)
{
struct snmp_gen_callback *scp = NULL;
int rc = 0;
/*
* don't init i and j before loop, since the caller specified
* the starting point explicitly. But *after* the i loop has
* finished executing once, init j to 0 for the next pass
* through the subids.
*/
for (; i < MAX_CALLBACK_IDS; i++,j=0) {
for (; j < MAX_CALLBACK_SUBIDS; j++) {
scp = thecallbacks[i][j];
while (scp != NULL) {
if ((NULL != scp->sc_callback) &&
(scp->sc_client_arg != NULL) &&
(scp->sc_client_arg == ptr)) {
DEBUGMSGTL(("9:callback", " clearing %p at [%d,%d]\n", ptr, i, j));
scp->sc_client_arg = NULL;
++rc;
}
scp = scp->next;
}
}
}
if (0 != rc) {
DEBUGMSGTL(("callback", "removed %d client args\n", rc));
}
return rc;
}
void
clear_callback(void)
{
unsigned int i = 0, j = 0;
struct snmp_gen_callback *scp = NULL;
if(++_lock > 1) {
snmp_log(LOG_WARNING,
"clear_callback called while callbacks _locked\n");
netsnmp_assert(1==_lock);
}
DEBUGMSGTL(("callback", "clear callback\n"));
for (i = 0; i < MAX_CALLBACK_IDS; i++) {
for (j = 0; j < MAX_CALLBACK_SUBIDS; j++) {
scp = thecallbacks[i][j];
while (scp != NULL) {
thecallbacks[i][j] = scp->next;
/*
* if there is a client arg, check for duplicates
* and then free it.
*/
if ((NULL != scp->sc_callback) &&
(scp->sc_client_arg != NULL)) {
void *tmp_arg;
/*
* save the client arg, then set it to null so that it
* won't look like a duplicate, then check for duplicates
* starting at the current i,j (earlier dups should have
* already been found) and free the pointer.
*/
tmp_arg = scp->sc_client_arg;
scp->sc_client_arg = NULL;
DEBUGMSGTL(("9:callback", " freeing %p at [%d,%d]\n", tmp_arg, i, j));
(void)netsnmp_callback_clear_client_arg(tmp_arg, i, j);
free(tmp_arg);
}
SNMP_FREE(scp);
scp = thecallbacks[i][j];
}
}
}
--_lock;
}
struct snmp_gen_callback *
snmp_callback_list(int major, int minor)
{
return (thecallbacks[major][minor]);
}
/** @} */
|