⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 snmpnotifytable.c

📁 snmp的源代码,已经在我的ubuntu下编译通过
💻 C
📖 第 1 页 / 共 2 页
字号:
/* * This file was generated by mib2c and is intended for use as * a mib module for the ucd-snmp snmpd agent.  *//* * This should always be included first before anything else  */#include <net-snmp/net-snmp-config.h>#include <sys/types.h>#if HAVE_WINSOCK_H#include <winsock.h>#endif#if HAVE_STDLIB_H#include <stdlib.h>#endif#if HAVE_STRING_H#include <string.h>#else#include <strings.h>#endif/* * minimal include directives  */#include <net-snmp/net-snmp-includes.h>#include <net-snmp/agent/net-snmp-agent-includes.h>#include "header_complex.h"#include "snmpNotifyTable.h"#include "target/snmpTargetParamsEntry.h"#include "target/snmpTargetAddrEntry.h"#include "target/target.h"#include <net-snmp/agent/agent_callbacks.h>#include <net-snmp/agent/agent_trap.h>SNMPCallback    store_snmpNotifyTable;/* * snmpNotifyTable_variables_oid: *   this is the top level oid that we want to register under.  This *   is essentially a prefix, with the suffix appearing in the *   variable below. */oid             snmpNotifyTable_variables_oid[] =    { 1, 3, 6, 1, 6, 3, 13, 1, 1 };/* * variable2 snmpNotifyTable_variables: *   this variable defines function callbacks and type return information  *   for the snmpNotifyTable mib section  */struct variable2 snmpNotifyTable_variables[] = {    /*     * magic number        , variable type , ro/rw , callback fn  , L, oidsuffix      */#define   SNMPNOTIFYTAG         4    {SNMPNOTIFYTAG, ASN_OCTET_STR, RWRITE, var_snmpNotifyTable, 2, {1, 2}},#define   SNMPNOTIFYTYPE        5    {SNMPNOTIFYTYPE, ASN_INTEGER, RWRITE, var_snmpNotifyTable, 2, {1, 3}},#define   SNMPNOTIFYSTORAGETYPE  6    {SNMPNOTIFYSTORAGETYPE, ASN_INTEGER, RWRITE, var_snmpNotifyTable, 2,     {1, 4}},#define   SNMPNOTIFYROWSTATUS   7    {SNMPNOTIFYROWSTATUS, ASN_INTEGER, RWRITE, var_snmpNotifyTable, 2,     {1, 5}},};/* * (L = length of the oidsuffix)  *//* * global storage of our data, saved in and configured by header_complex()  */static struct header_complex_index *snmpNotifyTableStorage = NULL;intsend_notifications(int major, int minor, void *serverarg, void *clientarg){    struct header_complex_index *hptr;    struct snmpNotifyTable_data *nptr;    netsnmp_session *sess, *sptr;    netsnmp_pdu    *template_pdu = (netsnmp_pdu *) serverarg;    DEBUGMSGTL(("send_notifications", "starting: pdu=%x, vars=%x\n",                template_pdu, template_pdu->variables));    for (hptr = snmpNotifyTableStorage; hptr; hptr = hptr->next) {        nptr = (struct snmpNotifyTable_data *) hptr->data;        if (nptr->snmpNotifyRowStatus != RS_ACTIVE)            continue;        if (!nptr->snmpNotifyTag)            continue;        sess = get_target_sessions(nptr->snmpNotifyTag, NULL, NULL);        /*         * XXX: filter appropriately          */        for (sptr = sess; sptr; sptr = sptr->next) {#ifndef DISABLE_SNMPV1            if (sptr->version == SNMP_VERSION_1 &&                minor == SNMPD_CALLBACK_SEND_TRAP1) {                send_trap_to_sess(sptr, template_pdu);            } else#endif            if ((sptr->version == SNMP_VERSION_3#ifndef DISABLE_SNMPV2C                 || sptr->version == SNMP_VERSION_2c#endif                ) && minor == SNMPD_CALLBACK_SEND_TRAP2) {                if (nptr->snmpNotifyType == SNMPNOTIFYTYPE_INFORM) {                    template_pdu->command = SNMP_MSG_INFORM;                } else {                    template_pdu->command = SNMP_MSG_TRAP2;                }                send_trap_to_sess(sptr, template_pdu);            }        }    }    return 0;}#define MAX_ENTRIES 1024intnotifyTable_register_notifications(int major, int minor,                                   void *serverarg, void *clientarg){    struct targetAddrTable_struct *ptr;    struct targetParamTable_struct *pptr;    struct snmpNotifyTable_data *nptr;    int             confirm, i;    char            buf[SNMP_MAXBUF_SMALL];    netsnmp_transport *t = NULL;    struct agent_add_trap_args *args =        (struct agent_add_trap_args *) serverarg;    netsnmp_session *ss;    if (!args || !(args->ss)) {        return (0);    }    confirm = args->confirm;    ss = args->ss;    /*     * XXX: START move target creation to target code      */    for (i = 0; i < MAX_ENTRIES; i++) {        sprintf(buf, "internal%d", i);        if (get_addrForName(buf) == NULL && get_paramEntry(buf) == NULL)            break;    }    if (i == MAX_ENTRIES) {        snmp_log(LOG_ERR,                 "Can't register new trap destination: max limit reached: %d",                 MAX_ENTRIES);        snmp_sess_close(ss);        return (0);    }    /*     * address      */    ptr = snmpTargetAddrTable_create();    ptr->name = strdup(buf);    t = snmp_sess_transport(snmp_sess_pointer(ss));    memcpy(ptr->tDomain, t->domain, t->domain_length * sizeof(oid));    ptr->tDomainLen = t->domain_length;    ptr->tAddressLen = t->remote_length;    ptr->tAddress = t->remote;    ptr->timeout = ss->timeout / 1000;    ptr->retryCount = ss->retries;    SNMP_FREE(ptr->tagList);    ptr->tagList = strdup(ptr->name);    ptr->params = strdup(ptr->name);    ptr->storageType = ST_READONLY;    ptr->rowStatus = RS_ACTIVE;    ptr->sess = ss;    DEBUGMSGTL(("trapsess", "adding to trap table\n"));    snmpTargetAddrTable_add(ptr);    /*     * param      */    pptr = snmpTargetParamTable_create();    pptr->paramName = strdup(buf);    pptr->mpModel = ss->version;    if (ss->version == SNMP_VERSION_3) {        pptr->secModel = ss->securityModel;        pptr->secLevel = ss->securityLevel;        pptr->secName = (char *) malloc(ss->securityNameLen + 1);        memcpy((void *) pptr->secName, (void *) ss->securityName,               ss->securityNameLen);        pptr->secName[ss->securityNameLen] = 0;    }#if !defined(DISABLE_SNMPV1) || !defined(DISABLE_SNMPV2C)       else {        pptr->secModel = ss->version == SNMP_VERSION_1 ?            SNMP_SEC_MODEL_SNMPv1 : SNMP_SEC_MODEL_SNMPv2c;        pptr->secLevel = SNMP_SEC_LEVEL_NOAUTH;        pptr->secName = NULL;        if (ss->community && (ss->community_len > 0)) {            pptr->secName = (char *) malloc(ss->community_len + 1);            memcpy((void *) pptr->secName, (void *) ss->community,                   ss->community_len);            pptr->secName[ss->community_len] = 0;        }    }#endif    pptr->storageType = ST_READONLY;    pptr->rowStatus = RS_ACTIVE;    snmpTargetParamTable_add(pptr);    /*     * XXX: END move target creation to target code      */    /*     * notify table      */    nptr = SNMP_MALLOC_STRUCT(snmpNotifyTable_data);    nptr->snmpNotifyName = strdup(buf);    nptr->snmpNotifyNameLen = strlen(buf);    nptr->snmpNotifyTag = strdup(buf);    nptr->snmpNotifyTagLen = strlen(buf);    nptr->snmpNotifyType = confirm ?        SNMPNOTIFYTYPE_INFORM : SNMPNOTIFYTYPE_TRAP;    nptr->snmpNotifyStorageType = ST_READONLY;    nptr->snmpNotifyRowStatus = RS_ACTIVE;    snmpNotifyTable_add(nptr);    return 0;}/* * XXX: this really needs to be done for the target mib entries too. * But we can only trust that we've added stuff here and we don't want * to destroy other valid entries in the target tables, so...  Don't * do too many kill -HUPs to your agent as re reading the config file * will be a slow memory leak in the target mib.  */intnotifyTable_unregister_notifications(int major, int minor,                                     void *serverarg, void *clientarg){    struct header_complex_index *hptr, *nhptr;    struct snmpNotifyTable_data *nptr;    for (hptr = snmpNotifyTableStorage; hptr; hptr = nhptr) {        nptr = (struct snmpNotifyTable_data *) hptr->data;        nhptr = hptr->next;        if (nptr->snmpNotifyStorageType == ST_READONLY) {            header_complex_extract_entry(&snmpNotifyTableStorage, hptr);            SNMP_FREE(nptr->snmpNotifyName);            SNMP_FREE(nptr->snmpNotifyTag);            SNMP_FREE(nptr);        }    }    return (0);}/* * init_snmpNotifyTable(): *   Initialization routine.  This is called when the agent starts up. *   At a minimum, registration of your variables should take place here. */voidinit_snmpNotifyTable(void){    DEBUGMSGTL(("snmpNotifyTable", "initializing...  "));    /*     * register ourselves with the agent to handle our mib tree      */    REGISTER_MIB("snmpNotifyTable", snmpNotifyTable_variables, variable2,                 snmpNotifyTable_variables_oid);    /*     * register our config handler(s) to deal with registrations      */    snmpd_register_config_handler("snmpNotifyTable", parse_snmpNotifyTable,                                  NULL, NULL);    /*     * we need to be called back later to store our data      */    snmp_register_callback(SNMP_CALLBACK_LIBRARY, SNMP_CALLBACK_STORE_DATA,                           store_snmpNotifyTable, NULL);    snmp_register_callback(SNMP_CALLBACK_APPLICATION,                           SNMPD_CALLBACK_SEND_TRAP1, send_notifications,                           NULL);    snmp_register_callback(SNMP_CALLBACK_APPLICATION,                           SNMPD_CALLBACK_SEND_TRAP2, send_notifications,                           NULL);    snmp_register_callback(SNMP_CALLBACK_APPLICATION,                           SNMPD_CALLBACK_REGISTER_NOTIFICATIONS,                           notifyTable_register_notifications, NULL);    snmp_register_callback(SNMP_CALLBACK_APPLICATION,                           SNMPD_CALLBACK_PRE_UPDATE_CONFIG,                           notifyTable_unregister_notifications, NULL);    /*     * place any other initialization junk you need here      */    DEBUGMSGTL(("snmpNotifyTable", "done.\n"));}/* * snmpNotifyTable_add(): adds a structure node to our data set  */intsnmpNotifyTable_add(struct snmpNotifyTable_data *thedata){    netsnmp_variable_list *vars = NULL;    DEBUGMSGTL(("snmpNotifyTable", "adding data...  "));    /*     * add the index variables to the varbind list, which is      * used by header_complex to index the data      */    snmp_varlist_add_variable(&vars, NULL, 0, ASN_PRIV_IMPLIED_OCTET_STR, (u_char *) thedata->snmpNotifyName, thedata->snmpNotifyNameLen);      /* snmpNotifyName */    header_complex_add_data(&snmpNotifyTableStorage, vars, thedata);    DEBUGMSGTL(("snmpNotifyTable", "registered an entry\n"));    DEBUGMSGTL(("snmpNotifyTable", "done.\n"));    return SNMPERR_SUCCESS;}/* * parse_snmpNotifyTable(): *   parses .conf file entries needed to configure the mib. */voidparse_snmpNotifyTable(const char *token, char *line){    size_t          tmpint;    struct snmpNotifyTable_data *StorageTmp =        SNMP_MALLOC_STRUCT(snmpNotifyTable_data);    DEBUGMSGTL(("snmpNotifyTable", "parsing config...  "));    if (StorageTmp == NULL) {        config_perror("malloc failure");        return;    }    line =        read_config_read_data(ASN_OCTET_STR, line,                              &StorageTmp->snmpNotifyName,                              &StorageTmp->snmpNotifyNameLen);    if (StorageTmp->snmpNotifyName == NULL) {        config_perror("invalid specification for snmpNotifyName");        return;    }    line =        read_config_read_data(ASN_OCTET_STR, line,                              &StorageTmp->snmpNotifyTag,                              &StorageTmp->snmpNotifyTagLen);    if (StorageTmp->snmpNotifyTag == NULL) {        config_perror("invalid specification for snmpNotifyTag");        return;    }    line =        read_config_read_data(ASN_INTEGER, line,                              &StorageTmp->snmpNotifyType, &tmpint);    line =        read_config_read_data(ASN_INTEGER, line,                              &StorageTmp->snmpNotifyStorageType, &tmpint);    line =        read_config_read_data(ASN_INTEGER, line,                              &StorageTmp->snmpNotifyRowStatus, &tmpint);    snmpNotifyTable_add(StorageTmp);    DEBUGMSGTL(("snmpNotifyTable", "done.\n"));}/* * store_snmpNotifyTable(): *   stores .conf file entries needed to configure the mib. */intstore_snmpNotifyTable(int majorID, int minorID, void *serverarg,                      void *clientarg){    char            line[SNMP_MAXBUF];    char           *cptr;    size_t          tmpint;    struct snmpNotifyTable_data *StorageTmp;    struct header_complex_index *hcindex;    DEBUGMSGTL(("snmpNotifyTable", "storing data...  "));    for (hcindex = snmpNotifyTableStorage; hcindex != NULL;         hcindex = hcindex->next) {        StorageTmp = (struct snmpNotifyTable_data *) hcindex->data;        /*         * store permanent and nonvolatile rows.         * XXX should there be a qualification on RowStatus??         */        if ((StorageTmp->snmpNotifyStorageType == ST_NONVOLATILE) ||            (StorageTmp->snmpNotifyStorageType == ST_PERMANENT) ){            memset(line, 0, sizeof(line));            strcat(line, "snmpNotifyTable ");            cptr = line + strlen(line);            cptr =                read_config_store_data(ASN_OCTET_STR, cptr,                                       &StorageTmp->snmpNotifyName,                                       &StorageTmp->snmpNotifyNameLen);            cptr =                read_config_store_data(ASN_OCTET_STR, cptr,                                       &StorageTmp->snmpNotifyTag,                                       &StorageTmp->snmpNotifyTagLen);            cptr =                read_config_store_data(ASN_INTEGER, cptr,                                       &StorageTmp->snmpNotifyType,                                       &tmpint);            cptr =                read_config_store_data(ASN_INTEGER, cptr,                                       &StorageTmp->snmpNotifyStorageType,                                       &tmpint);            cptr =                read_config_store_data(ASN_INTEGER, cptr,                                       &StorageTmp->snmpNotifyRowStatus,                                       &tmpint);            snmpd_store_config(line);        }    }    DEBUGMSGTL(("snmpNotifyTable", "done.\n"));    return 0;}/* * var_snmpNotifyTable(): *   Handle this table separately from the scalar value case. *   The workings of this are basically the same as for var_snmpNotifyTable above. */unsigned char  *var_snmpNotifyTable(struct variable *vp,                    oid * name,                    size_t * length,                    int exact,                    size_t * var_len, WriteMethod ** write_method){    struct snmpNotifyTable_data *StorageTmp = NULL;    int             found = 1;    DEBUGMSGTL(("snmpNotifyTable",                "var_snmpNotifyTable: Entering...  \n"));    /*

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -