亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? ixethdbcore.c

?? 友善mini2440嵌入式
?? C
字號:
/** * @file IxEthDBDBCore.c * * @brief Database support functions * * @par * IXP400 SW Release version 2.0 * * -- Copyright Notice -- * * @par * Copyright 2001-2005, Intel Corporation. * All rights reserved. * * @par * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright *    notice, this list of conditions and the following disclaimer in the *    documentation and/or other materials provided with the distribution. * 3. Neither the name of the Intel Corporation nor the names of its contributors *    may be used to endorse or promote products derived from this software *    without specific prior written permission. * * @par * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @par * -- End of Copyright Notice -- */#include "IxEthDB_p.h"/* list of database hashtables */IX_ETH_DB_PUBLIC HashTable dbHashtable;IX_ETH_DB_PUBLIC MatchFunction matchFunctions[IX_ETH_DB_MAX_KEY_INDEX + 1];IX_ETH_DB_PUBLIC BOOL ixEthDBPortUpdateRequired[IX_ETH_DB_MAX_RECORD_TYPE_INDEX + 1];IX_ETH_DB_PUBLIC UINT32 ixEthDBKeyType[IX_ETH_DB_MAX_RECORD_TYPE_INDEX + 1];/* private initialization flag */IX_ETH_DB_PRIVATE BOOL ethDBInitializationComplete = FALSE;/** * @brief initializes EthDB * * This function must be called to initialize the component. * * It does the following things: * - checks the port definition structure * - scans the capabilities of the NPE images and sets the *   capabilities of the ports accordingly * - initializes the memory pools internally used in EthDB *   for storing database records and handling data * - registers automatic update handlers for add and remove *   operations * - registers hashing match functions, depending on key sets * - initializes the main database hashtable * - allocates contiguous memory zones to be used for NPE *   updates * - registers the serialize methods used to convert data *   into NPE-readable format * - starts the event processor * * Note that this function is documented in the public * component header file, IxEthDB.h. * * @return IX_ETH_DB_SUCCESS or an appropriate error if the * component failed to initialize correctly */IX_ETH_DB_PUBLICIxEthDBStatus ixEthDBInit(void){    IxEthDBStatus result;    if (ethDBInitializationComplete)    {        /* redundant */        return IX_ETH_DB_SUCCESS;    }    /* trap an invalid port definition structure */    IX_ETH_DB_PORTS_ASSERTION;    /* memory management */    ixEthDBInitMemoryPools();    /* register hashing search methods */    ixEthDBMatchMethodsRegister(matchFunctions);    /* register type-based automatic port updates */    ixEthDBUpdateTypeRegister(ixEthDBPortUpdateRequired);    /* register record to key type mappings */    ixEthDBKeyTypeRegister(ixEthDBKeyType);    /* hash table */    ixEthDBInitHash(&dbHashtable, NUM_BUCKETS, ixEthDBEntryXORHash, matchFunctions, (FreeFunction) ixEthDBFreeMacDescriptor);    /* NPE update zones */    ixEthDBNPEUpdateAreasInit();    /* register record serialization methods */    ixEthDBRecordSerializeMethodsRegister();    /* start the event processor */    result = ixEthDBEventProcessorInit();    /* scan NPE features */    if (result == IX_ETH_DB_SUCCESS)    {        ixEthDBFeatureCapabilityScan();    }    ethDBInitializationComplete = TRUE;    return result;}/** * @brief prepares EthDB for unloading * * This function must be called before removing the * EthDB component from memory (e.g. doing rmmod in * Linux) if the component is to be re-initialized again * without rebooting the platform. * * All the EthDB ports must be disabled before this * function is to be called. Failure to disable all * the ports will return the IX_ETH_DB_BUSY error. * * This function will destroy mutexes, deallocate * memory and stop the event processor. * * Note that this function is fully documented in the * main component header file, IxEthDB.h. * * @return IX_ETH_DB_SUCCESS if de-initialization * completed successfully or an appropriate error * message otherwise */IX_ETH_DB_PUBLICIxEthDBStatus ixEthDBUnload(void){    IxEthDBPortId portIndex;    if (!ethDBInitializationComplete)    {        /* redundant */        return IX_ETH_DB_SUCCESS;    }    /* check if any ports are enabled */    for (portIndex = 0 ; portIndex < IX_ETH_DB_NUMBER_OF_PORTS ; portIndex++)    {        if (ixEthDBPortInfo[portIndex].enabled)        {            return IX_ETH_DB_BUSY;        }    }    /* free port resources */    for (portIndex = 0 ; portIndex < IX_ETH_DB_NUMBER_OF_PORTS ; portIndex++)    {        if (ixEthDBPortDefinitions[portIndex].type == IX_ETH_NPE)        {            ixOsalMutexDestroy(&ixEthDBPortInfo[portIndex].npeAckLock);        }        ixEthDBPortInfo[portIndex].initialized = FALSE;    }    /* shutdown event processor */    ixEthDBStopLearningFunction();    /* deallocate NPE update zones */    ixEthDBNPEUpdateAreasUnload();    ethDBInitializationComplete = FALSE;    return IX_ETH_DB_SUCCESS;}/** * @brief adds a new entry to the Ethernet database * * @param newRecordTemplate address of the record template to use * @param updateTrigger port map containing the update triggers * resulting from this update operation * * Creates a new database entry, populates it with the data * copied from the given template and adds the record to the * database hash table. * It also checks whether the new record type is registered to trigger * automatic updates; if it is, the update trigger will contain the * port on which the record insertion was performed, as well as the * old port in case the addition was a record migration (from one port * to the other). The caller can use the updateTrigger to trigger * automatic updates on the ports changed as a result of this addition. * * @retval IX_ETH_DB_SUCCESS addition successful * @retval IX_ETH_DB_NOMEM insertion failed, no memory left in the mac descriptor memory pool * @retval IX_ETH_DB_BUSY database busy, cannot insert due to locking * * @internal */IX_ETH_DB_PUBLICIxEthDBStatus ixEthDBAdd(MacDescriptor *newRecordTemplate, IxEthDBPortMap updateTrigger){    IxEthDBStatus result;    MacDescriptor *newDescriptor;    IxEthDBPortId originalPortID;    HashNode *node = NULL;    BUSY_RETRY(ixEthDBSearchHashEntry(&dbHashtable, ixEthDBKeyType[newRecordTemplate->type], newRecordTemplate, &node));    TEST_FIXTURE_INCREMENT_DB_CORE_ACCESS_COUNTER;    if (node == NULL)    {        /* not found, create a new one */        newDescriptor = ixEthDBAllocMacDescriptor();        if (newDescriptor == NULL)        {            return IX_ETH_DB_NOMEM; /* no memory */        }        /* old port does not exist, avoid unnecessary updates */        originalPortID = newRecordTemplate->portID;    }    else    {        /* a node with the same key exists, will update node */        newDescriptor = (MacDescriptor *) node->data;        /* save original port id */        originalPortID = newDescriptor->portID;    }    /* copy/update fields into new record */    memcpy(newDescriptor->macAddress, newRecordTemplate->macAddress, sizeof (IxEthDBMacAddr));    memcpy(&newDescriptor->recordData, &newRecordTemplate->recordData, sizeof (IxEthDBRecordData));    newDescriptor->type   = newRecordTemplate->type;    newDescriptor->portID = newRecordTemplate->portID;    newDescriptor->user   = newRecordTemplate->user;    if (node == NULL)    {        /* new record, insert into hashtable */        BUSY_RETRY_WITH_RESULT(ixEthDBAddHashEntry(&dbHashtable, newDescriptor), result);        if (result != IX_ETH_DB_SUCCESS)        {            ixEthDBFreeMacDescriptor(newDescriptor);            return result; /* insertion failed */        }    }    if (node != NULL)    {        /* release access */        ixEthDBReleaseHashNode(node);    }    /* trigger add/remove update if required by type */    if (updateTrigger != NULL &&        ixEthDBPortUpdateRequired[newRecordTemplate->type])    {        /* add new port to update list */        JOIN_PORT_TO_MAP(updateTrigger, newRecordTemplate->portID);        /* check if record has moved, we'll need to update the old port as well */        if (originalPortID != newDescriptor->portID)        {            JOIN_PORT_TO_MAP(updateTrigger, originalPortID);        }    }    return IX_ETH_DB_SUCCESS;}/** * @brief remove a record from the Ethernet database * * @param templateRecord template record used to determine * what record is to be removed * @param updateTrigger port map containing the update triggers * resulting from this update operation * * This function will examine the template record it receives * and attempts to delete a record of the same type and containing * the same keys as the template record. If deletion is successful * and the record type is registered for automatic port updates the * port will also be set in the updateTrigger port map, so that the * client can perform an update of the port. * * @retval IX_ETH_DB_SUCCESS removal was successful * @retval IX_ETH_DB_NO_SUCH_ADDR the record with the given MAC address was not found * @retval IX_ETH_DB_BUSY database busy, cannot remove due to locking * * @internal */IX_ETH_DB_PUBLICIxEthDBStatus ixEthDBRemove(MacDescriptor *templateRecord, IxEthDBPortMap updateTrigger){    IxEthDBStatus result;    TEST_FIXTURE_INCREMENT_DB_CORE_ACCESS_COUNTER;    BUSY_RETRY_WITH_RESULT(ixEthDBRemoveHashEntry(&dbHashtable, ixEthDBKeyType[templateRecord->type], templateRecord), result);    if (result != IX_ETH_DB_SUCCESS)    {        return IX_ETH_DB_NO_SUCH_ADDR; /* not found */    }    /* trigger add/remove update if required by type */    if (updateTrigger != NULL        &&ixEthDBPortUpdateRequired[templateRecord->type])    {        /* add new port to update list */        JOIN_PORT_TO_MAP(updateTrigger, templateRecord->portID);    }    return IX_ETH_DB_SUCCESS;}/** * @brief register record key types * * This function registers the appropriate key types, * depending on record types. * * All filtering records use the MAC address as the key. * WiFi and Firewall records use a compound key consisting * in both the MAC address and the port ID. * * @return the number of registered record types */IX_ETH_DB_PUBLICUINT32 ixEthDBKeyTypeRegister(UINT32 *keyType){    /* safety */    memset(keyType, 0, sizeof (keyType));    /* register all known record types */    keyType[IX_ETH_DB_FILTERING_RECORD]      = IX_ETH_DB_MAC_KEY;    keyType[IX_ETH_DB_FILTERING_VLAN_RECORD] = IX_ETH_DB_MAC_KEY;    keyType[IX_ETH_DB_ALL_FILTERING_RECORDS] = IX_ETH_DB_MAC_KEY;    keyType[IX_ETH_DB_WIFI_RECORD]           = IX_ETH_DB_MAC_PORT_KEY;    keyType[IX_ETH_DB_FIREWALL_RECORD]       = IX_ETH_DB_MAC_PORT_KEY;    return 5;}/** * @brief Sets a user-defined field into a database record * * Note that this function is fully documented in the main component * header file. */IX_ETH_DB_PUBLICIxEthDBStatus ixEthDBUserFieldSet(IxEthDBRecordType recordType, IxEthDBMacAddr *macAddr, IxEthDBPortId portID, IxEthDBVlanId vlanID, void *field){    HashNode *result = NULL;    if (macAddr == NULL)    {        return IX_ETH_DB_INVALID_ARG;    }    if (recordType == IX_ETH_DB_FILTERING_RECORD)    {        result = ixEthDBSearch(macAddr, recordType);    }    else if (recordType == IX_ETH_DB_FILTERING_VLAN_RECORD)    {        result = ixEthDBVlanSearch(macAddr, vlanID, recordType);    }    else if (recordType == IX_ETH_DB_WIFI_RECORD || recordType == IX_ETH_DB_FIREWALL_RECORD)    {        IX_ETH_DB_CHECK_PORT_EXISTS(portID);        result = ixEthDBPortSearch(macAddr, portID, recordType);    }    else    {        return IX_ETH_DB_INVALID_ARG;    }    if (result == NULL)    {        return IX_ETH_DB_NO_SUCH_ADDR;    }    ((MacDescriptor *) result->data)->user = field;    ixEthDBReleaseHashNode(result);    return IX_ETH_DB_SUCCESS;}/** * @brief Retrieves a user-defined field from a database record * * Note that this function is fully documented in the main component * header file. */IX_ETH_DB_PUBLICIxEthDBStatus ixEthDBUserFieldGet(IxEthDBRecordType recordType, IxEthDBMacAddr *macAddr, IxEthDBPortId portID, IxEthDBVlanId vlanID, void **field){    HashNode *result = NULL;    if (macAddr == NULL || field == NULL)    {        return IX_ETH_DB_INVALID_ARG;    }    if (recordType == IX_ETH_DB_FILTERING_RECORD)    {        result = ixEthDBSearch(macAddr, recordType);    }    else if (recordType == IX_ETH_DB_FILTERING_VLAN_RECORD)    {        result = ixEthDBVlanSearch(macAddr, vlanID, recordType);    }    else if (recordType == IX_ETH_DB_WIFI_RECORD || recordType == IX_ETH_DB_FIREWALL_RECORD)    {        IX_ETH_DB_CHECK_PORT_EXISTS(portID);        result = ixEthDBPortSearch(macAddr, portID, recordType);    }    else    {        return IX_ETH_DB_INVALID_ARG;    }    if (result == NULL)    {        return IX_ETH_DB_NO_SUCH_ADDR;    }    *field = ((MacDescriptor *) result->data)->user;    ixEthDBReleaseHashNode(result);    return IX_ETH_DB_SUCCESS;}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
a4yy欧美一区二区三区| 石原莉奈在线亚洲二区| 精品国产一区二区在线观看| 91国产免费看| av一本久道久久综合久久鬼色| 韩国欧美一区二区| 五月天久久比比资源色| 亚洲成a人片在线不卡一二三区| 亚洲猫色日本管| 欧美激情在线看| 1024成人网| 亚洲综合区在线| 午夜欧美一区二区三区在线播放| 亚洲一区二三区| 亚洲v精品v日韩v欧美v专区| 天天亚洲美女在线视频| 免费在线观看一区二区三区| 黄页网站大全一区二区| 日本aⅴ免费视频一区二区三区| 免费xxxx性欧美18vr| 日韩av中文在线观看| 理论电影国产精品| 视频一区二区三区中文字幕| 亚洲小少妇裸体bbw| 视频在线观看91| 国内成人免费视频| 95精品视频在线| 欧美区视频在线观看| 精品欧美一区二区久久| 国产欧美1区2区3区| 中文成人av在线| 亚洲国产一区二区三区青草影视 | 国产精品综合av一区二区国产馆| 懂色av中文一区二区三区| 91视频国产观看| 精品美女一区二区| 亚洲免费在线播放| 经典一区二区三区| 在线观看免费亚洲| 国产偷国产偷精品高清尤物| 亚洲午夜免费视频| 成人午夜伦理影院| 7878成人国产在线观看| 中文字幕在线不卡国产视频| 日本不卡视频一二三区| 成年人网站91| 91精品国产一区二区| 欧美激情综合在线| 日韩影视精彩在线| 91国内精品野花午夜精品| 久久精品亚洲麻豆av一区二区 | 欧美日韩mp4| 国产精品久久久久aaaa樱花| 日韩成人午夜精品| 欧美视频在线观看一区| 中文字幕国产一区二区| 激情深爱一区二区| 欧美日韩第一区日日骚| 一区二区三区久久| 91猫先生在线| 国产精品久久久久久户外露出| 麻豆精品蜜桃视频网站| 欧美性xxxxxx少妇| 亚洲一区二区不卡免费| 91在线国产观看| 国产精品九色蝌蚪自拍| 成人av在线一区二区| 国产色产综合产在线视频| 老司机免费视频一区二区三区| 欧美另类z0zxhd电影| 亚洲成国产人片在线观看| 91国产视频在线观看| 亚洲综合色成人| 欧美日韩一卡二卡| 天天综合网 天天综合色| 欧美性大战久久| 天天色天天操综合| 91精品国产乱码久久蜜臀| 日韩中文字幕区一区有砖一区 | 欧美日本乱大交xxxxx| 一区二区三区色| 欧美日韩一区中文字幕| 亚洲成人中文在线| 91精品婷婷国产综合久久竹菊| 午夜久久久影院| 日韩美一区二区三区| 国产精品一线二线三线精华| 国产午夜精品美女毛片视频| 国产激情视频一区二区在线观看| 国产欧美精品一区二区色综合| 国产99一区视频免费| 国产精品夫妻自拍| 在线精品亚洲一区二区不卡| 午夜精品视频一区| 欧美精品一区男女天堂| 成人h动漫精品| 亚洲图片有声小说| 欧美精品一区二区三区在线播放| 国产成人免费视频一区| 亚洲人成在线观看一区二区| 欧美日韩免费电影| 国产一区二区在线看| 国产精品传媒入口麻豆| 欧美日韩一区二区电影| 久久精品国产秦先生| 国产精品电影院| 欧美一区二区三区日韩| 不卡一区二区三区四区| 五月天一区二区| 国产精品系列在线| 欧美一三区三区四区免费在线看 | 国产日韩欧美高清| 91在线精品一区二区三区| 日韩不卡免费视频| 亚洲欧美激情小说另类| 日韩一级片在线播放| eeuss鲁片一区二区三区| 日韩影院免费视频| 亚洲视频精选在线| 精品播放一区二区| 欧美影院午夜播放| 成人短视频下载| 狠狠色丁香婷婷综合| 一区二区国产视频| 国产欧美综合在线| 欧美大片在线观看| 欧美天天综合网| 99精品视频在线观看| 国产真实乱对白精彩久久| 亚洲二区在线观看| 亚洲免费在线电影| 国产精品毛片无遮挡高清| 亚洲一区二区三区四区五区中文| 国产69精品久久99不卡| 麻豆成人综合网| 爽好久久久欧美精品| 亚洲一区av在线| 亚洲青青青在线视频| 亚洲国产精品v| 久久久国产精品午夜一区ai换脸| 欧美午夜电影一区| 在线观看视频一区| 91丨porny丨中文| 不卡电影一区二区三区| 成人免费毛片app| 国产精品一级在线| 国产一区二区精品在线观看| 麻豆国产精品777777在线| 丝瓜av网站精品一区二区| 丝袜美腿亚洲一区| 日韩成人av影视| 久久精品国产久精国产| 美女视频黄频大全不卡视频在线播放| 亚洲午夜一区二区三区| 亚洲国产精品嫩草影院| 丝袜诱惑亚洲看片| 青青草原综合久久大伊人精品 | 日韩一区二区三区免费观看| 51久久夜色精品国产麻豆| 欧美理论电影在线| 欧美放荡的少妇| 日韩免费视频线观看| 日韩美女主播在线视频一区二区三区 | 秋霞午夜av一区二区三区| 亚洲国产综合色| 麻豆精品一二三| 国产suv精品一区二区三区| 成人精品高清在线| 一本一道久久a久久精品综合蜜臀| 91亚洲永久精品| 欧美日韩高清不卡| 精品日韩一区二区三区| 国产人久久人人人人爽| 亚洲色图一区二区三区| 亚洲国产欧美日韩另类综合| 免费欧美高清视频| 国产a久久麻豆| 欧美在线一二三四区| 日韩丝袜美女视频| 国产精品久久网站| 午夜在线成人av| 国产精品主播直播| 欧美日韩免费观看一区三区| 91麻豆精品国产91久久久更新时间| 欧美草草影院在线视频| 亚洲国产高清在线观看视频| 亚洲精品国产品国语在线app| 蜜臀av一区二区三区| 成人av电影在线网| 欧美精品777| 中文字幕乱码日本亚洲一区二区| 一区二区三区欧美日| 国产一区二区三区香蕉| 欧美在线视频你懂得| 国产天堂亚洲国产碰碰| 天堂va蜜桃一区二区三区 | 日韩一区二区三区视频在线| 中文字幕一区在线观看视频| 久久精品国产精品亚洲红杏| 色哟哟一区二区在线观看 |