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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? skcsum.c

?? 移植好的楊創(chuàng)utu2440F ARM9 的uboot1.1.4代碼
?? C
?? 第 1 頁 / 共 2 頁
字號:
/****************************************************************************** * * Name:	skcsum.c * Project:	GEnesis, PCI Gigabit Ethernet Adapter * Version:	$Revision: 1.10 $ * Date:	$Date: 2002/04/11 10:02:04 $ * Purpose:	Store/verify Internet checksum in send/receive packets. * ******************************************************************************//****************************************************************************** * *	(C)Copyright 1998-2001 SysKonnect GmbH. * *	This program is free software; you can redistribute it and/or modify *	it under the terms of the GNU General Public License as published by *	the Free Software Foundation; either version 2 of the License, or *	(at your option) any later version. * *	The information in this file is provided "AS IS" without warranty. * ******************************************************************************//****************************************************************************** * * History: * *	$Log: skcsum.c,v $ *	Revision 1.10  2002/04/11 10:02:04  rwahl *	Fix in SkCsGetSendInfo(): *	- function did not return ProtocolFlags in every case. *	- pseudo header csum calculated wrong for big endian. * *	Revision 1.9  2001/06/13 07:42:08  gklug *	fix: NetNumber was wrong in CLEAR_STAT event *	add: check for good NetNumber in Clear STAT * *	Revision 1.8  2001/02/06 11:15:36  rassmann *	Supporting two nets on dual-port adapters. * *	Revision 1.7  2000/06/29 13:17:05  rassmann *	Corrected reception of a packet with UDP checksum == 0 (which means there *	is no UDP checksum). * *	Revision 1.6  2000/02/21 12:35:10  cgoos *	Fixed license header comment. * *	Revision 1.5  2000/02/21 11:05:19  cgoos *	Merged changes back to common source. *	Fixed rx path for BIG ENDIAN architecture. * *	Revision 1.1  1999/07/26 15:28:12  mkarl *	added return SKCS_STATUS_IP_CSUM_ERROR_UDP and *	SKCS_STATUS_IP_CSUM_ERROR_TCP to pass the NidsTester *	changed from common source to windows specific source *	therefore restarting with v1.0 * *	Revision 1.3  1999/05/10 08:39:33  mkarl *	prevent overflows in SKCS_HTON16 *	fixed a bug in pseudo header checksum calculation *	added some comments * *	Revision 1.2  1998/10/22 11:53:28  swolf *	Now using SK_DBG_MSG. * *	Revision 1.1  1998/09/01 15:35:41  swolf *	initial revision * *	13-May-1998 sw	Created. * ******************************************************************************/#include <config.h>#ifdef CONFIG_SK98#ifdef SK_USE_CSUM	/* Check if CSUM is to be used. */#ifndef lintstatic const char SysKonnectFileId[] = "@(#)"	"$Id: skcsum.c,v 1.10 2002/04/11 10:02:04 rwahl Exp $"	" (C) SysKonnect.";#endif	/* !lint *//****************************************************************************** * * Description: * * This is the "GEnesis" common module "CSUM". * * This module contains the code necessary to calculate, store, and verify the * Internet Checksum of IP, TCP, and UDP frames. * * "GEnesis" is an abbreviation of "Gigabit Ethernet Network System in Silicon" * and is the code name of this SysKonnect project. * * Compilation Options: * *	SK_USE_CSUM - Define if CSUM is to be used. Otherwise, CSUM will be an *	empty module. * *	SKCS_OVERWRITE_PROTO - Define to overwrite the default protocol id *	definitions. In this case, all SKCS_PROTO_xxx definitions must be made *	external. * *	SKCS_OVERWRITE_STATUS - Define to overwrite the default return status *	definitions. In this case, all SKCS_STATUS_xxx definitions must be made *	external. * * Include File Hierarchy: * *	"h/skdrv1st.h" *	"h/skcsum.h" *	 "h/sktypes.h" *	 "h/skqueue.h" *	"h/skdrv2nd.h" * ******************************************************************************/#include "h/skdrv1st.h"#include "h/skcsum.h"#include "h/skdrv2nd.h"/* defines ********************************************************************//* The size of an Ethernet MAC header. */#define SKCS_ETHERNET_MAC_HEADER_SIZE			(6+6+2)/* The size of the used topology's MAC header. */#define	SKCS_MAC_HEADER_SIZE	SKCS_ETHERNET_MAC_HEADER_SIZE/* The size of the IP header without any option fields. */#define SKCS_IP_HEADER_SIZE						20/* * Field offsets within the IP header. *//* "Internet Header Version" and "Length". */#define SKCS_OFS_IP_HEADER_VERSION_AND_LENGTH	0/* "Total Length". */#define SKCS_OFS_IP_TOTAL_LENGTH				2/* "Flags" "Fragment Offset". */#define SKCS_OFS_IP_FLAGS_AND_FRAGMENT_OFFSET	6/* "Next Level Protocol" identifier. */#define SKCS_OFS_IP_NEXT_LEVEL_PROTOCOL			9/* Source IP address. */#define SKCS_OFS_IP_SOURCE_ADDRESS				12/* Destination IP address. */#define SKCS_OFS_IP_DESTINATION_ADDRESS			16/* * Field offsets within the UDP header. *//* UDP checksum. */#define SKCS_OFS_UDP_CHECKSUM					6/* IP "Next Level Protocol" identifiers (see RFC 790). */#define SKCS_PROTO_ID_TCP		6	/* Transport Control Protocol */#define SKCS_PROTO_ID_UDP		17	/* User Datagram Protocol *//* IP "Don't Fragment" bit. */#define SKCS_IP_DONT_FRAGMENT	SKCS_HTON16(0x4000)/* Add a byte offset to a pointer. */#define SKCS_IDX(pPtr, Ofs)	((void *) ((char *) (pPtr) + (Ofs)))/* * Macros that convert host to network representation and vice versa, i.e. * little/big endian conversion on little endian machines only. */#ifdef SK_LITTLE_ENDIAN#define SKCS_HTON16(Val16)	(((unsigned) (Val16) >> 8) | (((Val16) & 0xFF) << 8))#endif	/* SK_LITTLE_ENDIAN */#ifdef SK_BIG_ENDIAN#define SKCS_HTON16(Val16)	(Val16)#endif	/* SK_BIG_ENDIAN */#define SKCS_NTOH16(Val16)	SKCS_HTON16(Val16)/* typedefs *******************************************************************//* function prototypes ********************************************************//****************************************************************************** * *	SkCsGetSendInfo - get checksum information for a send packet * * Description: *	Get all checksum information necessary to send a TCP or UDP packet. The *	function checks the IP header passed to it. If the high-level protocol *	is either TCP or UDP the pseudo header checksum is calculated and *	returned. * *	The function returns the total length of the IP header (including any *	IP option fields), which is the same as the start offset of the IP data *	which in turn is the start offset of the TCP or UDP header. * *	The function also returns the TCP or UDP pseudo header checksum, which *	should be used as the start value for the hardware checksum calculation. *	(Note that any actual pseudo header checksum can never calculate to *	zero.) * * Note: *	There is a bug in the ASIC which may lead to wrong checksums. * * Arguments: *	pAc - A pointer to the adapter context struct. * *	pIpHeader - Pointer to IP header. Must be at least the IP header *not* *	including any option fields, i.e. at least 20 bytes. * *	Note: This pointer will be used to address 8-, 16-, and 32-bit *	variables with the respective alignment offsets relative to the pointer. *	Thus, the pointer should point to a 32-bit aligned address. If the *	target system cannot address 32-bit variables on non 32-bit aligned *	addresses, then the pointer *must* point to a 32-bit aligned address. * *	pPacketInfo - A pointer to the packet information structure for this *	packet. Before calling this SkCsGetSendInfo(), the following field must *	be initialized: * *		ProtocolFlags - Initialize with any combination of *		SKCS_PROTO_XXX bit flags. SkCsGetSendInfo() will only work on *		the protocols specified here. Any protocol(s) not specified *		here will be ignored. * *		Note: Only one checksum can be calculated in hardware. Thus, if *		SKCS_PROTO_IP is specified in the 'ProtocolFlags', *		SkCsGetSendInfo() must calculate the IP header checksum in *		software. It might be a better idea to have the calling *		protocol stack calculate the IP header checksum. * * Returns: N/A *	On return, the following fields in 'pPacketInfo' may or may not have *	been filled with information, depending on the protocol(s) found in the *	packet: * *	ProtocolFlags - Returns the SKCS_PROTO_XXX bit flags of the protocol(s) *	that were both requested by the caller and actually found in the packet. *	Protocol(s) not specified by the caller and/or not found in the packet *	will have their respective SKCS_PROTO_XXX bit flags reset. * *	Note: For IP fragments, TCP and UDP packet information is ignored. * *	IpHeaderLength - The total length in bytes of the complete IP header *	including any option fields is returned here. This is the start offset *	of the IP data, i.e. the TCP or UDP header if present. * *	IpHeaderChecksum - If IP has been specified in the 'ProtocolFlags', the *	16-bit Internet Checksum of the IP header is returned here. This value *	is to be stored into the packet's 'IP Header Checksum' field. * *	PseudoHeaderChecksum - If this is a TCP or UDP packet and if TCP or UDP *	has been specified in the 'ProtocolFlags', the 16-bit Internet Checksum *	of the TCP or UDP pseudo header is returned here. */#if 0void SkCsGetSendInfo(SK_AC				*pAc,			/* Adapter context struct. */void				*pIpHeader,		/* IP header. */SKCS_PACKET_INFO	*pPacketInfo,	/* Packet information struct. */int					NetNumber)		/* Net number */{	/* Internet Header Version found in IP header. */	unsigned InternetHeaderVersion;	/* Length of the IP header as found in IP header. */	unsigned IpHeaderLength;	/* Bit field specifiying the desired/found protocols. */	unsigned ProtocolFlags;	/* Next level protocol identifier found in IP header. */	unsigned NextLevelProtocol;	/* Length of IP data portion. */	unsigned IpDataLength;	/* TCP/UDP pseudo header checksum. */	unsigned long PseudoHeaderChecksum;	/* Pointer to next level protocol statistics structure. */	SKCS_PROTO_STATS *NextLevelProtoStats;	/* Temporary variable. */	unsigned Tmp;	Tmp = *(SK_U8 *)		SKCS_IDX(pIpHeader, SKCS_OFS_IP_HEADER_VERSION_AND_LENGTH);	/* Get the Internet Header Version (IHV). */	/* Note: The IHV is stored in the upper four bits. */	InternetHeaderVersion = Tmp >> 4;	/* Check the Internet Header Version. */	/* Note: We currently only support IP version 4. */	if (InternetHeaderVersion != 4) {	/* IPv4? */		SK_DBG_MSG(pAc, SK_DBGMOD_CSUM, SK_DBGCAT_ERR | SK_DBGCAT_TX,			("Tx: Unknown Internet Header Version %u.\n",			InternetHeaderVersion));		pPacketInfo->ProtocolFlags = 0;		pAc->Csum.ProtoStats[NetNumber][SKCS_PROTO_STATS_IP].TxUnableCts++;		return;	}	/* Get the IP header length (IHL). */	/*	 * Note: The IHL is stored in the lower four bits as the number of	 * 4-byte words.	 */	IpHeaderLength = (Tmp & 0xf) * 4;	pPacketInfo->IpHeaderLength = IpHeaderLength;	/* Check the IP header length. */	/* 04-Aug-1998 sw - Really check the IHL? Necessary? */	if (IpHeaderLength < 5*4) {		SK_DBG_MSG(pAc, SK_DBGMOD_CSUM, SK_DBGCAT_ERR | SK_DBGCAT_TX,			("Tx: Invalid IP Header Length %u.\n", IpHeaderLength));		pPacketInfo->ProtocolFlags = 0;		pAc->Csum.ProtoStats[NetNumber][SKCS_PROTO_STATS_IP].TxUnableCts++;		return;	}	/* This is an IPv4 frame with a header of valid length. */	pAc->Csum.ProtoStats[NetNumber][SKCS_PROTO_STATS_IP].TxOkCts++;	/* Check if we should calculate the IP header checksum. */	ProtocolFlags = pPacketInfo->ProtocolFlags;	if (ProtocolFlags & SKCS_PROTO_IP) {		pPacketInfo->IpHeaderChecksum =			SkCsCalculateChecksum(pIpHeader, IpHeaderLength);	}	/* Get the next level protocol identifier. */	NextLevelProtocol =		*(SK_U8 *) SKCS_IDX(pIpHeader, SKCS_OFS_IP_NEXT_LEVEL_PROTOCOL);	/*	 * Check if this is a TCP or UDP frame and if we should calculate the	 * TCP/UDP pseudo header checksum.	 *	 * Also clear all protocol bit flags of protocols not present in the	 * frame.	 */	if ((ProtocolFlags & SKCS_PROTO_TCP) != 0 &&		NextLevelProtocol == SKCS_PROTO_ID_TCP) {		/* TCP/IP frame. */		ProtocolFlags &= SKCS_PROTO_TCP | SKCS_PROTO_IP;		NextLevelProtoStats =			&pAc->Csum.ProtoStats[NetNumber][SKCS_PROTO_STATS_TCP];	}	else if ((ProtocolFlags & SKCS_PROTO_UDP) != 0 &&		NextLevelProtocol == SKCS_PROTO_ID_UDP) {		/* UDP/IP frame. */		ProtocolFlags &= SKCS_PROTO_UDP | SKCS_PROTO_IP;		NextLevelProtoStats =			&pAc->Csum.ProtoStats[NetNumber][SKCS_PROTO_STATS_UDP];	}	else {		/*		 * Either not a TCP or UDP frame and/or TCP/UDP processing not		 * specified.		 */		pPacketInfo->ProtocolFlags = ProtocolFlags & SKCS_PROTO_IP;		return;	}	/* Check if this is an IP fragment. */	/*	 * Note: An IP fragment has a non-zero "Fragment Offset" field and/or	 * the "More Fragments" bit set. Thus, if both the "Fragment Offset"	 * and the "More Fragments" are zero, it is *not* a fragment. We can	 * easily check both at the same time since they are in the same 16-bit	 * word.	 */	if ((*(SK_U16 *)		SKCS_IDX(pIpHeader, SKCS_OFS_IP_FLAGS_AND_FRAGMENT_OFFSET) &		~SKCS_IP_DONT_FRAGMENT) != 0) {		/* IP fragment; ignore all other protocols. */		pPacketInfo->ProtocolFlags = ProtocolFlags & SKCS_PROTO_IP;		NextLevelProtoStats->TxUnableCts++;		return;	}	/*	 * Calculate the TCP/UDP pseudo header checksum.	 */	/* Get total length of IP header and data. */	IpDataLength =		*(SK_U16 *) SKCS_IDX(pIpHeader, SKCS_OFS_IP_TOTAL_LENGTH);	/* Get length of IP data portion. */	IpDataLength = SKCS_NTOH16(IpDataLength) - IpHeaderLength;	/* Calculate the sum of all pseudo header fields (16-bit). */	PseudoHeaderChecksum =		(unsigned long) *(SK_U16 *) SKCS_IDX(pIpHeader,			SKCS_OFS_IP_SOURCE_ADDRESS + 0) +		(unsigned long) *(SK_U16 *) SKCS_IDX(pIpHeader,			SKCS_OFS_IP_SOURCE_ADDRESS + 2) +		(unsigned long) *(SK_U16 *) SKCS_IDX(pIpHeader,			SKCS_OFS_IP_DESTINATION_ADDRESS + 0) +		(unsigned long) *(SK_U16 *) SKCS_IDX(pIpHeader,			SKCS_OFS_IP_DESTINATION_ADDRESS + 2) +		(unsigned long) SKCS_HTON16(NextLevelProtocol) +		(unsigned long) SKCS_HTON16(IpDataLength);	/* Add-in any carries. */	SKCS_OC_ADD(PseudoHeaderChecksum, PseudoHeaderChecksum, 0);	/* Add-in any new carry. */	SKCS_OC_ADD(pPacketInfo->PseudoHeaderChecksum, PseudoHeaderChecksum, 0);	pPacketInfo->ProtocolFlags = ProtocolFlags;	NextLevelProtoStats->TxOkCts++;	/* Success. */}	/* SkCsGetSendInfo *//****************************************************************************** * *	SkCsGetReceiveInfo - verify checksum information for a received packet * * Description: *	Verify a received frame's checksum. The function returns a status code *	reflecting the result of the verification. * * Note: *	Before calling this function you have to verify that the frame is *	not padded and Checksum1 and Checksum2 are bigger than 1. * * Arguments: *	pAc - Pointer to adapter context struct. * *	pIpHeader - Pointer to IP header. Must be at least the length in bytes *	of the received IP header including any option fields. For UDP packets, *	8 additional bytes are needed to access the UDP checksum. * *	Note: The actual length of the IP header is stored in the lower four *	bits of the first octet of the IP header as the number of 4-byte words, *	so it must be multiplied by four to get the length in bytes. Thus, the

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
婷婷开心激情综合| 中文字幕av一区二区三区高| 亚洲成人一区在线| 欧美巨大另类极品videosbest| 亚洲成人午夜电影| 91精品国产综合久久精品麻豆| 青娱乐精品在线视频| 欧美v国产在线一区二区三区| 国产精品系列在线播放| 国产精品久久久久久久久久久免费看| 91麻豆国产福利精品| 亚洲一区二区三区国产| 日韩一区二区三区免费看 | 9191精品国产综合久久久久久| 亚洲aⅴ怡春院| 精品久久久久久久久久久院品网| 丰满白嫩尤物一区二区| 亚洲天堂2014| 日韩欧美国产精品| 99久久伊人网影院| 视频一区视频二区中文字幕| 亚洲精品一区在线观看| 色综合一个色综合亚洲| 麻豆精品国产传媒mv男同| 日本一区二区三区视频视频| 欧洲一区在线观看| 久久99久久久久久久久久久| 亚洲欧美综合网| 91精品国产aⅴ一区二区| 丁香啪啪综合成人亚洲小说| 日韩国产一二三区| 国产精品色噜噜| 欧美一区二区三区喷汁尤物| 懂色一区二区三区免费观看| 丝袜亚洲另类欧美| 亚洲欧美自拍偷拍色图| 777午夜精品免费视频| 成人中文字幕在线| 免费三级欧美电影| 伊人夜夜躁av伊人久久| 久久久久久99久久久精品网站| 欧美日韩国产影片| 丰满放荡岳乱妇91ww| 久久成人免费电影| 亚洲.国产.中文慕字在线| 国产精品人成在线观看免费| 欧美三级电影在线看| 成人的网站免费观看| 美腿丝袜在线亚洲一区| 亚洲韩国一区二区三区| 国产精品久久久久一区二区三区共| 欧美一区二区三区免费大片| 色婷婷久久久亚洲一区二区三区| 国产成都精品91一区二区三| 精品一区二区在线免费观看| 日韩二区在线观看| 亚洲国产日韩精品| 国产精品家庭影院| 国产网站一区二区| 精品国产第一区二区三区观看体验| 欧美在线视频全部完| 色综合久久中文字幕综合网| 夫妻av一区二区| 国产精品白丝jk黑袜喷水| 韩国精品久久久| 久久成人麻豆午夜电影| 日韩成人一级大片| 午夜精品一区二区三区免费视频| 亚洲精品视频观看| 亚洲黄色免费网站| 亚洲一区在线视频观看| 一区二区三国产精华液| 一区二区三区四区在线播放| 日韩理论片在线| 亚洲精品乱码久久久久久黑人| 亚洲欧美日韩国产中文在线| 综合色天天鬼久久鬼色| 亚洲欧美一区二区三区国产精品| 日韩久久一区二区| 依依成人综合视频| 亚洲丰满少妇videoshd| 亚洲成人自拍偷拍| 日韩极品在线观看| 久久精品免费观看| 国产美女av一区二区三区| 国产乱码一区二区三区| 国产精品一区二区三区四区 | 亚洲香蕉伊在人在线观| 一区二区三区美女视频| 亚洲图片有声小说| 日本不卡一二三| 国产一区二区三区黄视频| 国产精品亚洲第一| 91免费版在线| 在线成人小视频| 精品福利av导航| 国产精品成人一区二区艾草| 亚洲男同1069视频| 日韩黄色一级片| 国产伦精品一区二区三区免费迷 | 亚洲免费在线视频| 亚洲成人免费看| 国产乱对白刺激视频不卡| 成人丝袜视频网| 欧美中文字幕一区二区三区| 91精品国产入口| 日本一区二区三区视频视频| 一区二区三区高清| 精品一区免费av| 日本韩国一区二区三区| 日韩欧美资源站| 国产精品护士白丝一区av| 亚洲一区二区在线视频| 韩国理伦片一区二区三区在线播放| 成人国产电影网| 欧美一区二区三区日韩视频| 最新国产精品久久精品| 日本系列欧美系列| 97久久人人超碰| 精品久久久久久久久久久久久久久久久| 国产精品久久久久aaaa| 男女激情视频一区| 色综合久久久久综合体| 日韩精品一区二区三区在线| 亚洲精品日韩一| 国产精品性做久久久久久| 欧美精品色一区二区三区| 自拍视频在线观看一区二区| 麻豆精品精品国产自在97香蕉| 91福利区一区二区三区| www久久久久| 亚洲大型综合色站| 91免费在线播放| 久久久久久亚洲综合影院红桃| 亚洲一区二区三区小说| 粉嫩av亚洲一区二区图片| 日韩欧美国产系列| 亚洲成人激情自拍| 色偷偷久久一区二区三区| 国产亚洲成aⅴ人片在线观看 | 久久只精品国产| 日韩精品亚洲专区| 欧美日韩国产成人在线免费| 国产精品色哟哟| 国产福利一区二区三区| 欧美mv日韩mv| 青青草伊人久久| 91麻豆精品国产91久久久久| 亚洲综合丝袜美腿| 91色在线porny| 国产精品久久久久久久浪潮网站| 国产精品一级在线| 久久天天做天天爱综合色| 久久国产精品免费| 欧美videofree性高清杂交| 日本在线不卡一区| 7777精品久久久大香线蕉 | 久久看人人爽人人| 国产综合久久久久久鬼色 | 国产精品高清亚洲| 成人性生交大合| 国产精品欧美一级免费| eeuss鲁片一区二区三区在线观看| 久久久久久亚洲综合影院红桃| 国产精品91xxx| 国产精品麻豆网站| caoporen国产精品视频| 亚洲久本草在线中文字幕| 99久久久无码国产精品| 亚洲精品视频免费看| 91福利社在线观看| 日韩成人精品视频| 26uuuu精品一区二区| 国产精品自拍av| 国产精品久久久久久久久免费丝袜 | 波多野结衣亚洲一区| 国产精品不卡在线观看| 99久久免费视频.com| 亚洲最新视频在线播放| 欧美视频在线不卡| 免费欧美在线视频| 久久女同互慰一区二区三区| 国产成人免费xxxxxxxx| 国产精品盗摄一区二区三区| 色欧美片视频在线观看在线视频| 一区二区三区精密机械公司| 欧洲亚洲国产日韩| 免费在线看成人av| 国产日本一区二区| 在线日韩国产精品| 日本在线不卡视频| 亚洲国产精华液网站w | 成人小视频免费在线观看| 日韩理论在线观看| 日韩一区二区三区视频| 成人午夜精品在线| 亚洲国产中文字幕| 久久久精品2019中文字幕之3| 色狠狠桃花综合| 久久99久久99|