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

📄 ipaddresstable_data_access.c

📁 开发snmp的开发包有两个开放的SNMP开发库
💻 C
📖 第 1 页 / 共 2 页
字号:
                       (netsnmp_container_obj_func *) _add_new_entry,                       container);    /*     * free the container. we've either claimed each entry, or released it,     * so the access function doesn't need to clear the container.     */    netsnmp_access_ipaddress_container_free(ipaddress_container,                                            NETSNMP_ACCESS_IPADDRESS_FREE_DONT_CLEAR);    /*     * remove deleted addresses from table container     */    if (NULL != tmp_ptr[1]) {        netsnmp_container *tmp_container =            (netsnmp_container *) tmp_ptr[1];        ipAddressTable_rowreq_ctx *tmp_ctx;        /*         * this works because the tmp_container is a linked list,         * which can be used like a stack...         */        while (CONTAINER_SIZE(tmp_container)) {            /*             * get from delete list             */            tmp_ctx = CONTAINER_FIRST(tmp_container);            /*             * release context, delete from table container             */            CONTAINER_REMOVE(container, tmp_ctx);            ipAddressTable_release_rowreq_ctx(tmp_ctx);            /*             * pop off delete list             */            CONTAINER_REMOVE(tmp_container, NULL);        }    }    DEBUGMSGT(("verbose:ipAddressTable:ipAddressTable_cache_load",               "%d records\n", CONTAINER_SIZE(container)));    return MFD_SUCCESS;}/** * container clean up * * @param container container with all current items * *  This optional callback is called prior to all *  item's being removed from the container. If you *  need to do any processing before that, do it here. * * @note *  The MFD helper will take care of releasing all the row contexts. * */voidipAddressTable_container_free(netsnmp_container *container){    DEBUGMSGTL(("verbose:ipAddressTable:ipAddressTable_container_free",                "called\n"));    /*     * TODO:380:M: Free ipAddressTable container data.     */}                               /* ipAddressTable_container_free *//** * prepare row for processing. * *  When the agent has located the row for a request, this function is *  called to prepare the row for processing. If you fully populated *  the data context during the index setup phase, you may not need to *  do anything. * * @param rowreq_ctx pointer to a context. * * @retval MFD_SUCCESS     : success. * @retval MFD_ERROR       : other error. */intipAddressTable_row_prep(ipAddressTable_rowreq_ctx * rowreq_ctx){    DEBUGMSGTL(("verbose:ipAddressTable:ipAddressTable_row_prep",                "called\n"));    netsnmp_assert(NULL != rowreq_ctx);    /*     * TODO:390:o: Prepare row for request.     * If populating row data was delayed, this is the place to     * fill in the row for this request.     */    return MFD_SUCCESS;}                               /* ipAddressTable_row_prep *//* * TODO:420:r: Implement ipAddressTable index validation. *//*--------------------------------------------------------------------- * IP-MIB::ipAddressEntry.ipAddressAddrType * ipAddressAddrType is subid 1 of ipAddressEntry. * Its status is Current, and its access level is NoAccess. * OID: .1.3.6.1.2.1.4.34.1.1 * Description:The address type of ipAddressAddr. * * Attributes: *   accessible 0     isscalar 0     enums  1      hasdefval 0 *   readable   0     iscolumn 1     ranges 0      hashint   0 *   settable   0 * * Enum range: 5/8. Values:  unknown(0), ipv4(1), ipv6(2), ipv4z(3), ipv6z(4), dns(16) * * Its syntax is InetAddressType (based on perltype INTEGER) * The net-snmp type is ASN_INTEGER. The C type decl is long (u_long) * * * * NOTE: NODE ipAddressAddrType IS NOT ACCESSIBLE * * *//** * check validity of ipAddressAddrType index portion * * @retval MFD_SUCCESS   : the incoming value is legal * @retval MFD_ERROR     : the incoming value is NOT legal * * @note this is not the place to do any checks for the sanity *       of multiple indexes. Those types of checks should be done in the *       ipAddressTable_validate_index() function. * * @note Also keep in mind that if the index refers to a row in this or *       some other table, you can't check for that row here to make *       decisions, since that row might not be created yet, but may *       be created during the processing this request. If you have *       such checks, they should be done in the check_dependencies *       function, because any new/deleted/changed rows should be *       available then. * * The following checks have already been done for you: *    The value is one of  unknown(0), ipv4(1), ipv6(2), ipv4z(3), ipv6z(4), dns(16) * * If there a no other checks you need to do, simply return MFD_SUCCESS. */intipAddressAddrType_check_index(ipAddressTable_rowreq_ctx * rowreq_ctx){    DEBUGMSGTL(("verbose:ipAddressTable:ipAddressAddrType_check_index",                "called\n"));    netsnmp_assert(NULL != rowreq_ctx);    /*     * TODO:426:M: |-> Check ipAddressTable index ipAddressAddrType.     * check that index value in the table context is legal.     * (rowreq_ctx->tbl_index.ipAddressAddrType)     */    switch (rowreq_ctx->tbl_idx.ipAddressAddrType) {    case INETADDRESSTYPE_IPV4:    case INETADDRESSTYPE_IPV6:        break;    default:        DEBUGMSGT(("ipAddressTable", "illegal addr type\n"));        return MFD_ERROR;    }    return MFD_SUCCESS;         /* ipAddressAddrType index ok */}                               /* ipAddressAddrType_check_index *//*--------------------------------------------------------------------- * IP-MIB::ipAddressEntry.ipAddressAddr * ipAddressAddr is subid 2 of ipAddressEntry. * Its status is Current, and its access level is NoAccess. * OID: .1.3.6.1.2.1.4.34.1.2 * Description:The IP address to which this entry's addressing information            pertains.  The address type of this object is specified in            ipAddressAddrType.            Implementors need to be aware that if the size of            ipAddressAddr exceeds 116 octets then OIDS of instances of            columns in this row will have more than 128 sub-identifiers            and cannot be accessed using SNMPv1, SNMPv2c or SNMPv3. * * Attributes: *   accessible 0     isscalar 0     enums  0      hasdefval 0 *   readable   0     iscolumn 1     ranges 1      hashint   0 *   settable   0 * * Ranges:  0 - 255; * * Its syntax is InetAddress (based on perltype OCTETSTR) * The net-snmp type is ASN_OCTET_STR. The C type decl is char (char) * This data type requires a length.  (Max 255) * * * * NOTE: NODE ipAddressAddr IS NOT ACCESSIBLE * * *//** * check validity of ipAddressAddr index portion * * @retval MFD_SUCCESS   : the incoming value is legal * @retval MFD_ERROR     : the incoming value is NOT legal * * @note this is not the place to do any checks for the sanity *       of multiple indexes. Those types of checks should be done in the *       ipAddressTable_validate_index() function. * * @note Also keep in mind that if the index refers to a row in this or *       some other table, you can't check for that row here to make *       decisions, since that row might not be created yet, but may *       be created during the processing this request. If you have *       such checks, they should be done in the check_dependencies *       function, because any new/deleted/changed rows should be *       available then. * * The following checks have already been done for you: *    The length is in (one of) the range set(s):  0 - 255 * * If there a no other checks you need to do, simply return MFD_SUCCESS. */intipAddressAddr_check_index(ipAddressTable_rowreq_ctx * rowreq_ctx){    DEBUGMSGTL(("verbose:ipAddressTable:ipAddressAddr_check_index",                "called\n"));    netsnmp_assert(NULL != rowreq_ctx);    /*     * TODO:426:M: |-> Check ipAddressTable index ipAddressAddr.     * check that index value in the table context is legal.     * (rowreq_ctx->tbl_index.ipAddressAddr)     */    switch (rowreq_ctx->tbl_idx.ipAddressAddrType) {    case INETADDRESSTYPE_IPV4:        if (4 != rowreq_ctx->tbl_idx.ipAddressAddr_len) {            DEBUGMSGT(("ipAddressTable", "bad addr len\n"));            return MFD_ERROR;        }        break;    case INETADDRESSTYPE_IPV6:            /** xxx-rks: allow 20? */        if (16 != rowreq_ctx->tbl_idx.ipAddressAddr_len) {            DEBUGMSGT(("ipAddressTable", "bad addr len\n"));            return MFD_ERROR;        }        break;    default:        return MFD_ERROR;    }    return MFD_SUCCESS;         /* ipAddressAddr index ok */}                               /* ipAddressAddr_check_index *//** * verify specified index is valid. * * This check is independent of whether or not the values specified for * the columns of the new row are valid. Column values and row consistency * will be checked later. At this point, only the index values should be * checked. * * All of the individual index validation functions have been called, so this * is the place to make sure they are valid as a whole when combined. If * you only have one index, then you probably don't need to do anything else * here. *  * @note Keep in mind that if the indexes refer to a row in this or *       some other table, you can't check for that row here to make *       decisions, since that row might not be created yet, but may *       be created during the processing this request. If you have *       such checks, they should be done in the check_dependencies *       function, because any new/deleted/changed rows should be *       available then. * * * @param ipAddressTable_reg *        Pointer to the user registration data * @param rowreq_ctx *        Pointer to the users context. * @retval MFD_SUCCESS            : success * @retval MFD_CANNOT_CREATE_NOW  : index not valid right now * @retval MFD_CANNOT_CREATE_EVER : index never valid */intipAddressTable_validate_index(ipAddressTable_registration *                              ipAddressTable_reg,                              ipAddressTable_rowreq_ctx * rowreq_ctx){    int             rc = MFD_SUCCESS;    DEBUGMSGTL(("verbose:ipAddressTable:ipAddressTable_validate_index",                "called\n"));    /** we should have a non-NULL pointer */    netsnmp_assert(NULL != rowreq_ctx);    /*     * TODO:430:M: |-> Validate potential ipAddressTable index.     *     *     * xxx-rks: we only plan ipv4 support initially     */    if ((4 != rowreq_ctx->tbl_idx.ipAddressAddr_len)) {        snmp_log(LOG_WARNING, "invalid index for a new row in the "                 "ipAddressTable table.\n");        /*         * determine failure type.         *         * If the index could not ever be created, return MFD_NOT_EVER         * If the index can not be created under the present circumstances         * (even though it could be created under other circumstances),         * return MFD_NOT_NOW.         */        if (0) {            return MFD_CANNOT_CREATE_EVER;        } else {            return MFD_CANNOT_CREATE_NOW;        }    } else {        rowreq_ctx->data->ia_address[0] =            rowreq_ctx->tbl_idx.ipAddressAddr[0];        rowreq_ctx->data->ia_address[1] =            rowreq_ctx->tbl_idx.ipAddressAddr[1];        rowreq_ctx->data->ia_address[2] =            rowreq_ctx->tbl_idx.ipAddressAddr[2];        rowreq_ctx->data->ia_address[3] =            rowreq_ctx->tbl_idx.ipAddressAddr[3];        rowreq_ctx->data->ia_address_len = 4;    }    return rc;}                               /* ipAddressTable_validate_index *//** @} */

⌨️ 快捷键说明

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