skcsum.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:28k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /******************************************************************************
  2.  *
  3.  * Name: skcsum.c
  4.  * Project: GEnesis, PCI Gigabit Ethernet Adapter
  5.  * Version: $Revision: 1.8 $
  6.  * Date: $Date: 2001/02/06 11:15:36 $
  7.  * Purpose: Store/verify Internet checksum in send/receive packets.
  8.  *
  9.  ******************************************************************************/
  10. /******************************************************************************
  11.  *
  12.  * (C)Copyright 1998-2001 SysKonnect GmbH.
  13.  *
  14.  * This program is free software; you can redistribute it and/or modify
  15.  * it under the terms of the GNU General Public License as published by
  16.  * the Free Software Foundation; either version 2 of the License, or
  17.  * (at your option) any later version.
  18.  *
  19.  * The information in this file is provided "AS IS" without warranty.
  20.  *
  21.  ******************************************************************************/
  22. /******************************************************************************
  23.  *
  24.  * History:
  25.  *
  26.  * $Log: skcsum.c,v $
  27.  * Revision 1.8  2001/02/06 11:15:36  rassmann
  28.  * Supporting two nets on dual-port adapters.
  29.  *
  30.  * Revision 1.7  2000/06/29 13:17:05  rassmann
  31.  * Corrected reception of a packet with UDP checksum == 0 (which means there
  32.  * is no UDP checksum).
  33.  *
  34.  * Revision 1.6  2000/02/21 12:35:10  cgoos
  35.  * Fixed license header comment.
  36.  *
  37.  * Revision 1.5  2000/02/21 11:05:19  cgoos
  38.  * Merged changes back to common source.
  39.  * Fixed rx path for BIG ENDIAN architecture.
  40.  *
  41.  * Revision 1.1  1999/07/26 15:28:12  mkarl
  42.  * added return SKCS_STATUS_IP_CSUM_ERROR_UDP and
  43.  * SKCS_STATUS_IP_CSUM_ERROR_TCP to pass the NidsTester
  44.  * changed from common source to windows specific source
  45.  * therefore restarting with v1.0
  46.  *
  47.  * Revision 1.3  1999/05/10 08:39:33  mkarl
  48.  * prevent overflows in SKCS_HTON16
  49.  * fixed a bug in pseudo header checksum calculation
  50.  * added some comments
  51.  *
  52.  * Revision 1.2  1998/10/22 11:53:28  swolf
  53.  * Now using SK_DBG_MSG.
  54.  *
  55.  * Revision 1.1  1998/09/01 15:35:41  swolf
  56.  * initial revision
  57.  *
  58.  * 13-May-1998 sw Created.
  59.  *
  60.  ******************************************************************************/
  61. #ifdef SK_USE_CSUM /* Check if CSUM is to be used. */
  62. #ifndef lint
  63. static const char SysKonnectFileId[] = "@(#)"
  64. "$Id: skcsum.c,v 1.8 2001/02/06 11:15:36 rassmann Exp $"
  65. " (C) SysKonnect.";
  66. #endif /* !lint */
  67. /******************************************************************************
  68.  *
  69.  * Description:
  70.  *
  71.  * This is the "GEnesis" common module "CSUM".
  72.  *
  73.  * This module contains the code necessary to calculate, store, and verify the
  74.  * Internet Checksum of IP, TCP, and UDP frames.
  75.  *
  76.  * "GEnesis" is an abbreviation of "Gigabit Ethernet Network System in Silicon"
  77.  * and is the code name of this SysKonnect project.
  78.  *
  79.  * Compilation Options:
  80.  *
  81.  * SK_USE_CSUM - Define if CSUM is to be used. Otherwise, CSUM will be an
  82.  * empty module.
  83.  *
  84.  * SKCS_OVERWRITE_PROTO - Define to overwrite the default protocol id
  85.  * definitions. In this case, all SKCS_PROTO_xxx definitions must be made
  86.  * external.
  87.  *
  88.  * SKCS_OVERWRITE_STATUS - Define to overwrite the default return status
  89.  * definitions. In this case, all SKCS_STATUS_xxx definitions must be made
  90.  * external.
  91.  *
  92.  * Include File Hierarchy:
  93.  *
  94.  * "h/skdrv1st.h"
  95.  * "h/skcsum.h"
  96.  *  "h/sktypes.h"
  97.  *  "h/skqueue.h"
  98.  * "h/skdrv2nd.h"
  99.  *
  100.  ******************************************************************************/
  101. #include "h/skdrv1st.h"
  102. #include "h/skcsum.h"
  103. #include "h/skdrv2nd.h"
  104. /* defines ********************************************************************/
  105. /* The size of an Ethernet MAC header. */
  106. #define SKCS_ETHERNET_MAC_HEADER_SIZE (6+6+2)
  107. /* The size of the used topology's MAC header. */
  108. #define SKCS_MAC_HEADER_SIZE SKCS_ETHERNET_MAC_HEADER_SIZE
  109. /* The size of the IP header without any option fields. */
  110. #define SKCS_IP_HEADER_SIZE 20
  111. /*
  112.  * Field offsets within the IP header.
  113.  */
  114. /* "Internet Header Version" and "Length". */
  115. #define SKCS_OFS_IP_HEADER_VERSION_AND_LENGTH 0
  116. /* "Total Length". */
  117. #define SKCS_OFS_IP_TOTAL_LENGTH 2
  118. /* "Flags" "Fragment Offset". */
  119. #define SKCS_OFS_IP_FLAGS_AND_FRAGMENT_OFFSET 6
  120. /* "Next Level Protocol" identifier. */
  121. #define SKCS_OFS_IP_NEXT_LEVEL_PROTOCOL 9
  122. /* Source IP address. */
  123. #define SKCS_OFS_IP_SOURCE_ADDRESS 12
  124. /* Destination IP address. */
  125. #define SKCS_OFS_IP_DESTINATION_ADDRESS 16
  126. /*
  127.  * Field offsets within the UDP header.
  128.  */
  129. /* UDP checksum. */
  130. #define SKCS_OFS_UDP_CHECKSUM 6
  131. /* IP "Next Level Protocol" identifiers (see RFC 790). */
  132. #define SKCS_PROTO_ID_TCP 6 /* Transport Control Protocol */
  133. #define SKCS_PROTO_ID_UDP 17 /* User Datagram Protocol */
  134. /* IP "Don't Fragment" bit. */
  135. #define SKCS_IP_DONT_FRAGMENT SKCS_HTON16(0x4000)
  136. /* Add a byte offset to a pointer. */
  137. #define SKCS_IDX(pPtr, Ofs) ((void *) ((char *) (pPtr) + (Ofs)))
  138. /*
  139.  * Macros that convert host to network representation and vice versa, i.e.
  140.  * little/big endian conversion on little endian machines only.
  141.  */
  142. #ifdef SK_LITTLE_ENDIAN
  143. #define SKCS_HTON16(Val16) (((unsigned) (Val16) >> 8) | (((Val16) & 0xFF) << 8))
  144. #endif /* SK_LITTLE_ENDIAN */
  145. #ifdef SK_BIG_ENDIAN
  146. #define SKCS_HTON16(Val16) (Val16)
  147. #endif /* SK_BIG_ENDIAN */
  148. #define SKCS_NTOH16(Val16) SKCS_HTON16(Val16)
  149. /* typedefs *******************************************************************/
  150. /* function prototypes ********************************************************/
  151. /******************************************************************************
  152.  *
  153.  * SkCsGetSendInfo - get checksum information for a send packet
  154.  *
  155.  * Description:
  156.  * Get all checksum information necessary to send a TCP or UDP packet. The
  157.  * function checks the IP header passed to it. If the high-level protocol
  158.  * is either TCP or UDP the pseudo header checksum is calculated and
  159.  * returned.
  160.  *
  161.  * The function returns the total length of the IP header (including any
  162.  * IP option fields), which is the same as the start offset of the IP data
  163.  * which in turn is the start offset of the TCP or UDP header.
  164.  *
  165.  * The function also returns the TCP or UDP pseudo header checksum, which
  166.  * should be used as the start value for the hardware checksum calculation.
  167.  * (Note that any actual pseudo header checksum can never calculate to
  168.  * zero.)
  169.  *
  170.  * Note:
  171.  * There is a bug in the ASIC whic may lead to wrong checksums.
  172.  *
  173.  * Arguments:
  174.  * pAc - A pointer to the adapter context struct.
  175.  *
  176.  * pIpHeader - Pointer to IP header. Must be at least the IP header *not*
  177.  * including any option fields, i.e. at least 20 bytes.
  178.  *
  179.  * Note: This pointer will be used to address 8-, 16-, and 32-bit
  180.  * variables with the respective alignment offsets relative to the pointer.
  181.  * Thus, the pointer should point to a 32-bit aligned address. If the
  182.  * target system cannot address 32-bit variables on non 32-bit aligned
  183.  * addresses, then the pointer *must* point to a 32-bit aligned address.
  184.  *
  185.  * pPacketInfo - A pointer to the packet information structure for this
  186.  * packet. Before calling this SkCsGetSendInfo(), the following field must
  187.  * be initialized:
  188.  *
  189.  * ProtocolFlags - Initialize with any combination of
  190.  * SKCS_PROTO_XXX bit flags. SkCsGetSendInfo() will only work on
  191.  * the protocols specified here. Any protocol(s) not specified
  192.  * here will be ignored.
  193.  *
  194.  * Note: Only one checksum can be calculated in hardware. Thus, if
  195.  * SKCS_PROTO_IP is specified in the 'ProtocolFlags',
  196.  * SkCsGetSendInfo() must calculate the IP header checksum in
  197.  * software. It might be a better idea to have the calling
  198.  * protocol stack calculate the IP header checksum.
  199.  *
  200.  * Returns: N/A
  201.  * On return, the following fields in 'pPacketInfo' may or may not have
  202.  * been filled with information, depending on the protocol(s) found in the
  203.  * packet:
  204.  *
  205.  * ProtocolFlags - Returns the SKCS_PROTO_XXX bit flags of the protocol(s)
  206.  * that were both requested by the caller and actually found in the packet.
  207.  * Protocol(s) not specified by the caller and/or not found in the packet
  208.  * will have their respective SKCS_PROTO_XXX bit flags reset.
  209.  *
  210.  * Note: For IP fragments, TCP and UDP packet information is ignored.
  211.  *
  212.  * IpHeaderLength - The total length in bytes of the complete IP header
  213.  * including any option fields is returned here. This is the start offset
  214.  * of the IP data, i.e. the TCP or UDP header if present.
  215.  *
  216.  * IpHeaderChecksum - If IP has been specified in the 'ProtocolFlags', the
  217.  * 16-bit Internet Checksum of the IP header is returned here. This value
  218.  * is to be stored into the packet's 'IP Header Checksum' field.
  219.  *
  220.  * PseudoHeaderChecksum - If this is a TCP or UDP packet and if TCP or UDP
  221.  * has been specified in the 'ProtocolFlags', the 16-bit Internet Checksum
  222.  * of the TCP or UDP pseudo header is returned here.
  223.  */
  224. void SkCsGetSendInfo(
  225. SK_AC *pAc, /* Adapter context struct. */
  226. void *pIpHeader, /* IP header. */
  227. SKCS_PACKET_INFO *pPacketInfo, /* Packet information struct. */
  228. int NetNumber) /* Net number */
  229. {
  230. /* Internet Header Version found in IP header. */
  231. unsigned InternetHeaderVersion;
  232. /* Length of the IP header as found in IP header. */
  233. unsigned IpHeaderLength;
  234. /* Bit field specifiying the desired/found protocols. */
  235. unsigned ProtocolFlags;
  236. /* Next level protocol identifier found in IP header. */
  237. unsigned NextLevelProtocol;
  238. /* Length of IP data portion. */
  239. unsigned IpDataLength;
  240. /* TCP/UDP pseudo header checksum. */
  241. unsigned long PseudoHeaderChecksum;
  242. /* Pointer to next level protocol statistics structure. */
  243. SKCS_PROTO_STATS *NextLevelProtoStats;
  244. /* Temporary variable. */
  245. unsigned Tmp;
  246. Tmp = *(SK_U8 *)
  247. SKCS_IDX(pIpHeader, SKCS_OFS_IP_HEADER_VERSION_AND_LENGTH);
  248. /* Get the Internet Header Version (IHV). */
  249. /* Note: The IHV is stored in the upper four bits. */
  250. InternetHeaderVersion = Tmp >> 4;
  251. /* Check the Internet Header Version. */
  252. /* Note: We currently only support IP version 4. */
  253. if (InternetHeaderVersion != 4) { /* IPv4? */
  254. SK_DBG_MSG(pAc, SK_DBGMOD_CSUM, SK_DBGCAT_ERR | SK_DBGCAT_TX,
  255. ("Tx: Unknown Internet Header Version %u.n",
  256. InternetHeaderVersion));
  257. pPacketInfo->ProtocolFlags = 0;
  258. pAc->Csum.ProtoStats[NetNumber][SKCS_PROTO_STATS_IP].TxUnableCts++;
  259. return;
  260. }
  261. /* Get the IP header length (IHL). */
  262. /*
  263.  * Note: The IHL is stored in the lower four bits as the number of
  264.  * 4-byte words.
  265.  */
  266. IpHeaderLength = (Tmp & 0xf) * 4;
  267. pPacketInfo->IpHeaderLength = IpHeaderLength;
  268. /* Check the IP header length. */
  269. /* 04-Aug-1998 sw - Really check the IHL? Necessary? */
  270. if (IpHeaderLength < 5*4) {
  271. SK_DBG_MSG(pAc, SK_DBGMOD_CSUM, SK_DBGCAT_ERR | SK_DBGCAT_TX,
  272. ("Tx: Invalid IP Header Length %u.n", IpHeaderLength));
  273. pPacketInfo->ProtocolFlags = 0;
  274. pAc->Csum.ProtoStats[NetNumber][SKCS_PROTO_STATS_IP].TxUnableCts++;
  275. return;
  276. }
  277. /* This is an IPv4 frame with a header of valid length. */
  278. pAc->Csum.ProtoStats[NetNumber][SKCS_PROTO_STATS_IP].TxOkCts++;
  279. /* Check if we should calculate the IP header checksum. */
  280. ProtocolFlags = pPacketInfo->ProtocolFlags;
  281. if (ProtocolFlags & SKCS_PROTO_IP) {
  282. pPacketInfo->IpHeaderChecksum =
  283. SkCsCalculateChecksum(pIpHeader, IpHeaderLength);
  284. }
  285. /* Get the next level protocol identifier. */
  286. NextLevelProtocol =
  287. *(SK_U8 *) SKCS_IDX(pIpHeader, SKCS_OFS_IP_NEXT_LEVEL_PROTOCOL);
  288. /*
  289.  * Check if this is a TCP or UDP frame and if we should calculate the
  290.  * TCP/UDP pseudo header checksum.
  291.  *
  292.  * Also clear all protocol bit flags of protocols not present in the
  293.  * frame.
  294.  */
  295. if ((ProtocolFlags & SKCS_PROTO_TCP) != 0 &&
  296. NextLevelProtocol == SKCS_PROTO_ID_TCP) {
  297. /* TCP/IP frame. */
  298. ProtocolFlags &= SKCS_PROTO_TCP | SKCS_PROTO_IP;
  299. NextLevelProtoStats =
  300. &pAc->Csum.ProtoStats[NetNumber][SKCS_PROTO_STATS_TCP];
  301. }
  302. else if ((ProtocolFlags & SKCS_PROTO_UDP) != 0 &&
  303. NextLevelProtocol == SKCS_PROTO_ID_UDP) {
  304. /* UDP/IP frame. */
  305. ProtocolFlags &= SKCS_PROTO_UDP | SKCS_PROTO_IP;
  306. NextLevelProtoStats =
  307. &pAc->Csum.ProtoStats[NetNumber][SKCS_PROTO_STATS_UDP];
  308. }
  309. else {
  310. /*
  311.  * Either not a TCP or UDP frame and/or TCP/UDP processing not
  312.  * specified.
  313.  */
  314. pPacketInfo->ProtocolFlags = ProtocolFlags & SKCS_PROTO_IP;
  315. return;
  316. }
  317. /* Check if this is an IP fragment. */
  318. /*
  319.  * Note: An IP fragment has a non-zero "Fragment Offset" field and/or
  320.  * the "More Fragments" bit set. Thus, if both the "Fragment Offset"
  321.  * and the "More Fragments" are zero, it is *not* a fragment. We can
  322.  * easily check both at the same time since they are in the same 16-bit
  323.  * word.
  324.  */
  325. if ((*(SK_U16 *)
  326. SKCS_IDX(pIpHeader, SKCS_OFS_IP_FLAGS_AND_FRAGMENT_OFFSET) &
  327. ~SKCS_IP_DONT_FRAGMENT) != 0) {
  328. /* IP fragment; ignore all other protocols. */
  329. pPacketInfo->ProtocolFlags = ProtocolFlags & SKCS_PROTO_IP;
  330. NextLevelProtoStats->TxUnableCts++;
  331. return;
  332. }
  333. /*
  334.  * Calculate the TCP/UDP pseudo header checksum.
  335.  */
  336. /* Get total length of IP header and data. */
  337. IpDataLength =
  338. *(SK_U16 *) SKCS_IDX(pIpHeader, SKCS_OFS_IP_TOTAL_LENGTH);
  339. /* Get length of IP data portion. */
  340. IpDataLength = SKCS_NTOH16(IpDataLength) - IpHeaderLength;
  341. /* Calculate the sum of all pseudo header fields (16-bit). */
  342. PseudoHeaderChecksum =
  343. (unsigned long) *(SK_U16 *) SKCS_IDX(pIpHeader,
  344. SKCS_OFS_IP_SOURCE_ADDRESS + 0) +
  345. (unsigned long) *(SK_U16 *) SKCS_IDX(pIpHeader,
  346. SKCS_OFS_IP_SOURCE_ADDRESS + 2) +
  347. (unsigned long) *(SK_U16 *) SKCS_IDX(pIpHeader,
  348. SKCS_OFS_IP_DESTINATION_ADDRESS + 0) +
  349. (unsigned long) *(SK_U16 *) SKCS_IDX(pIpHeader,
  350. SKCS_OFS_IP_DESTINATION_ADDRESS + 2) +
  351. (unsigned long) (NextLevelProtocol << 8) +
  352. (unsigned long) SKCS_HTON16(IpDataLength);
  353. /* Add-in any carries. */
  354. SKCS_OC_ADD(PseudoHeaderChecksum, PseudoHeaderChecksum, 0);
  355. /* Add-in any new carry. */
  356. SKCS_OC_ADD(pPacketInfo->PseudoHeaderChecksum, PseudoHeaderChecksum, 0);
  357. NextLevelProtoStats->TxOkCts++; /* Success. */
  358. } /* SkCsGetSendInfo */
  359. /******************************************************************************
  360.  *
  361.  * SkCsGetReceiveInfo - verify checksum information for a received packet
  362.  *
  363.  * Description:
  364.  * Verify a received frame's checksum. The function returns a status code
  365.  * reflecting the result of the verification.
  366.  *
  367.  * Note:
  368.  * Before calling this function you have to verify that the frame is
  369.  * not padded and Checksum1 and Checksum2 are bigger than 1.
  370.  *
  371.  * Arguments:
  372.  * pAc - Pointer to adapter context struct.
  373.  *
  374.  * pIpHeader - Pointer to IP header. Must be at least the length in bytes
  375.  * of the received IP header including any option fields. For UDP packets,
  376.  * 8 additional bytes are needed to access the UDP checksum.
  377.  *
  378.  * Note: The actual length of the IP header is stored in the lower four
  379.  * bits of the first octet of the IP header as the number of 4-byte words,
  380.  * so it must be multiplied by four to get the length in bytes. Thus, the
  381.  * maximum IP header length is 15 * 4 = 60 bytes.
  382.  *
  383.  * Checksum1 - The first 16-bit Internet Checksum calculated by the
  384.  * hardware starting at the offset returned by SkCsSetReceiveFlags().
  385.  *
  386.  * Checksum2 - The second 16-bit Internet Checksum calculated by the
  387.  * hardware starting at the offset returned by SkCsSetReceiveFlags().
  388.  *
  389.  * Returns:
  390.  * SKCS_STATUS_UNKNOWN_IP_VERSION - Not an IP v4 frame.
  391.  * SKCS_STATUS_IP_CSUM_ERROR - IP checksum error.
  392.  * SKCS_STATUS_IP_CSUM_ERROR_TCP - IP checksum error in TCP frame.
  393.  * SKCS_STATUS_IP_CSUM_ERROR_UDP - IP checksum error in UDP frame
  394.  * SKCS_STATUS_IP_FRAGMENT - IP fragment (IP checksum ok).
  395.  * SKCS_STATUS_IP_CSUM_OK - IP checksum ok (not a TCP or UDP frame).
  396.  * SKCS_STATUS_TCP_CSUM_ERROR - TCP checksum error (IP checksum ok).
  397.  * SKCS_STATUS_UDP_CSUM_ERROR - UDP checksum error (IP checksum ok).
  398.  * SKCS_STATUS_TCP_CSUM_OK - IP and TCP checksum ok.
  399.  * SKCS_STATUS_UDP_CSUM_OK - IP and UDP checksum ok.
  400.  * SKCS_STATUS_IP_CSUM_OK_NO_UDP - IP checksum OK and no UDP checksum.
  401.  *
  402.  * Note: If SKCS_OVERWRITE_STATUS is defined, the SKCS_STATUS_XXX values
  403.  * returned here can be defined in some header file by the module using CSUM.
  404.  * In this way, the calling module can assign return values for its own needs,
  405.  * e.g. by assigning bit flags to the individual protocols.
  406.  */
  407. SKCS_STATUS SkCsGetReceiveInfo(
  408. SK_AC *pAc, /* Adapter context struct. */
  409. void *pIpHeader, /* IP header. */
  410. unsigned Checksum1, /* Hardware checksum 1. */
  411. unsigned Checksum2, /* Hardware checksum 2. */
  412. int NetNumber) /* Net number */
  413. {
  414. /* Internet Header Version found in IP header. */
  415. unsigned InternetHeaderVersion;
  416. /* Length of the IP header as found in IP header. */
  417. unsigned IpHeaderLength;
  418. /* Length of IP data portion. */
  419. unsigned IpDataLength;
  420. /* IP header checksum. */
  421. unsigned IpHeaderChecksum;
  422. /* IP header options checksum, if any. */
  423. unsigned IpOptionsChecksum;
  424. /* IP data checksum, i.e. TCP/UDP checksum. */
  425. unsigned IpDataChecksum;
  426. /* Next level protocol identifier found in IP header. */
  427. unsigned NextLevelProtocol;
  428. /* The checksum of the "next level protocol", i.e. TCP or UDP. */
  429. unsigned long NextLevelProtocolChecksum;
  430. /* Pointer to next level protocol statistics structure. */
  431. SKCS_PROTO_STATS *NextLevelProtoStats;
  432. /* Temporary variable. */
  433. unsigned Tmp;
  434. Tmp = *(SK_U8 *)
  435. SKCS_IDX(pIpHeader, SKCS_OFS_IP_HEADER_VERSION_AND_LENGTH);
  436. /* Get the Internet Header Version (IHV). */
  437. /* Note: The IHV is stored in the upper four bits. */
  438. InternetHeaderVersion = Tmp >> 4;
  439. /* Check the Internet Header Version. */
  440. /* Note: We currently only support IP version 4. */
  441. if (InternetHeaderVersion != 4) { /* IPv4? */
  442. SK_DBG_MSG(pAc, SK_DBGMOD_CSUM, SK_DBGCAT_ERR | SK_DBGCAT_RX,
  443. ("Rx: Unknown Internet Header Version %u.n",
  444. InternetHeaderVersion));
  445. pAc->Csum.ProtoStats[NetNumber][SKCS_PROTO_STATS_IP].RxUnableCts++;
  446. return (SKCS_STATUS_UNKNOWN_IP_VERSION);
  447. }
  448. /* Get the IP header length (IHL). */
  449. /*
  450.  * Note: The IHL is stored in the lower four bits as the number of
  451.  * 4-byte words.
  452.  */
  453. IpHeaderLength = (Tmp & 0xf) * 4;
  454. /* Check the IP header length. */
  455. /* 04-Aug-1998 sw - Really check the IHL? Necessary? */
  456. if (IpHeaderLength < 5*4) {
  457. SK_DBG_MSG(pAc, SK_DBGMOD_CSUM, SK_DBGCAT_ERR | SK_DBGCAT_RX,
  458. ("Rx: Invalid IP Header Length %u.n", IpHeaderLength));
  459. pAc->Csum.ProtoStats[NetNumber][SKCS_PROTO_STATS_IP].RxErrCts++;
  460. return (SKCS_STATUS_IP_CSUM_ERROR);
  461. }
  462. /* This is an IPv4 frame with a header of valid length. */
  463. /* Get the IP header and data checksum. */
  464. IpDataChecksum = Checksum2;
  465. /*
  466.  * The IP header checksum is calculated as follows:
  467.  *
  468.  * IpHeaderChecksum = Checksum1 - Checksum2
  469.  */
  470. SKCS_OC_SUB(IpHeaderChecksum, Checksum1, Checksum2);
  471. /* Check if any IP header options. */
  472. if (IpHeaderLength > SKCS_IP_HEADER_SIZE) {
  473. /* Get the IP options checksum. */
  474. IpOptionsChecksum = SkCsCalculateChecksum(
  475. SKCS_IDX(pIpHeader, SKCS_IP_HEADER_SIZE),
  476. IpHeaderLength - SKCS_IP_HEADER_SIZE);
  477. /* Adjust the IP header and IP data checksums. */
  478. SKCS_OC_ADD(IpHeaderChecksum, IpHeaderChecksum, IpOptionsChecksum);
  479. SKCS_OC_SUB(IpDataChecksum, IpDataChecksum, IpOptionsChecksum);
  480. }
  481. /*
  482.  * Check if the IP header checksum is ok.
  483.  *
  484.  * NOTE: We must check the IP header checksum even if the caller just wants
  485.  * us to check upper-layer checksums, because we cannot do any further
  486.  * processing of the packet without a valid IP checksum.
  487.  */
  488. /* Get the next level protocol identifier. */
  489. NextLevelProtocol = *(SK_U8 *)
  490. SKCS_IDX(pIpHeader, SKCS_OFS_IP_NEXT_LEVEL_PROTOCOL);
  491. if (IpHeaderChecksum != 0xFFFF) {
  492. pAc->Csum.ProtoStats[NetNumber][SKCS_PROTO_STATS_IP].RxErrCts++;
  493. /* the NDIS tester wants to know the upper level protocol too */
  494. if (NextLevelProtocol == SKCS_PROTO_ID_TCP) {
  495. return(SKCS_STATUS_IP_CSUM_ERROR_TCP);
  496. }
  497. else if (NextLevelProtocol == SKCS_PROTO_ID_UDP) {
  498. return(SKCS_STATUS_IP_CSUM_ERROR_UDP);
  499. }
  500. return (SKCS_STATUS_IP_CSUM_ERROR);
  501. }
  502. /*
  503.  * Check if this is a TCP or UDP frame and if we should calculate the
  504.  * TCP/UDP pseudo header checksum.
  505.  *
  506.  * Also clear all protocol bit flags of protocols not present in the
  507.  * frame.
  508.  */
  509. if ((pAc->Csum.ReceiveFlags[NetNumber] & SKCS_PROTO_TCP) != 0 &&
  510. NextLevelProtocol == SKCS_PROTO_ID_TCP) {
  511. /* TCP/IP frame. */
  512. NextLevelProtoStats =
  513. &pAc->Csum.ProtoStats[NetNumber][SKCS_PROTO_STATS_TCP];
  514. }
  515. else if ((pAc->Csum.ReceiveFlags[NetNumber] & SKCS_PROTO_UDP) != 0 &&
  516. NextLevelProtocol == SKCS_PROTO_ID_UDP) {
  517. /* UDP/IP frame. */
  518. NextLevelProtoStats =
  519. &pAc->Csum.ProtoStats[NetNumber][SKCS_PROTO_STATS_UDP];
  520. }
  521. else {
  522. /*
  523.  * Either not a TCP or UDP frame and/or TCP/UDP processing not
  524.  * specified.
  525.  */
  526. return (SKCS_STATUS_IP_CSUM_OK);
  527. }
  528. /* Check if this is an IP fragment. */
  529. /*
  530.  * Note: An IP fragment has a non-zero "Fragment Offset" field and/or
  531.  * the "More Fragments" bit set. Thus, if both the "Fragment Offset"
  532.  * and the "More Fragments" are zero, it is *not* a fragment. We can
  533.  * easily check both at the same time since they are in the same 16-bit
  534.  * word.
  535.  */
  536. if ((*(SK_U16 *)
  537. SKCS_IDX(pIpHeader, SKCS_OFS_IP_FLAGS_AND_FRAGMENT_OFFSET) &
  538. ~SKCS_IP_DONT_FRAGMENT) != 0) {
  539. /* IP fragment; ignore all other protocols. */
  540. NextLevelProtoStats->RxUnableCts++;
  541. return (SKCS_STATUS_IP_FRAGMENT);
  542. }
  543. /*
  544.  * 08-May-2000 ra
  545.  *
  546.  * From RFC 768 (UDP)
  547.  * If the computed checksum is zero, it is transmitted as all ones (the
  548.  * equivalent in one's complement arithmetic).  An all zero transmitted
  549.  * checksum value means that the transmitter generated no checksum (for
  550.  * debugging or for higher level protocols that don't care).
  551.  */
  552. if (NextLevelProtocol == SKCS_PROTO_ID_UDP &&
  553. *(SK_U16*)SKCS_IDX(pIpHeader, IpHeaderLength + 6) == 0x0000) {
  554. NextLevelProtoStats->RxOkCts++;
  555. return (SKCS_STATUS_IP_CSUM_OK_NO_UDP);
  556. }
  557. /*
  558.  * Calculate the TCP/UDP checksum.
  559.  */
  560. /* Get total length of IP header and data. */
  561. IpDataLength =
  562. *(SK_U16 *) SKCS_IDX(pIpHeader, SKCS_OFS_IP_TOTAL_LENGTH);
  563. /* Get length of IP data portion. */
  564. IpDataLength = SKCS_NTOH16(IpDataLength) - IpHeaderLength;
  565. NextLevelProtocolChecksum =
  566. /* Calculate the pseudo header checksum. */
  567. (unsigned long) *(SK_U16 *) SKCS_IDX(pIpHeader,
  568. SKCS_OFS_IP_SOURCE_ADDRESS + 0) +
  569. (unsigned long) *(SK_U16 *) SKCS_IDX(pIpHeader,
  570. SKCS_OFS_IP_SOURCE_ADDRESS + 2) +
  571. (unsigned long) *(SK_U16 *) SKCS_IDX(pIpHeader,
  572. SKCS_OFS_IP_DESTINATION_ADDRESS + 0) +
  573. (unsigned long) *(SK_U16 *) SKCS_IDX(pIpHeader,
  574. SKCS_OFS_IP_DESTINATION_ADDRESS + 2) +
  575. (unsigned long) SKCS_HTON16(NextLevelProtocol) +
  576. (unsigned long) SKCS_HTON16(IpDataLength) +
  577. /* Add the TCP/UDP header checksum. */
  578. (unsigned long) IpDataChecksum;
  579. /* Add-in any carries. */
  580. SKCS_OC_ADD(NextLevelProtocolChecksum, NextLevelProtocolChecksum, 0);
  581. /* Add-in any new carry. */
  582. SKCS_OC_ADD(NextLevelProtocolChecksum, NextLevelProtocolChecksum, 0);
  583. /* Check if the TCP/UDP checksum is ok. */
  584. if ((unsigned) NextLevelProtocolChecksum == 0xFFFF) {
  585. /* TCP/UDP checksum ok. */
  586. NextLevelProtoStats->RxOkCts++;
  587. return (NextLevelProtocol == SKCS_PROTO_ID_TCP ?
  588. SKCS_STATUS_TCP_CSUM_OK : SKCS_STATUS_UDP_CSUM_OK);
  589. }
  590. /* TCP/UDP checksum error. */
  591. NextLevelProtoStats->RxErrCts++;
  592. return (NextLevelProtocol == SKCS_PROTO_ID_TCP ?
  593. SKCS_STATUS_TCP_CSUM_ERROR : SKCS_STATUS_UDP_CSUM_ERROR);
  594. } /* SkCsGetReceiveInfo */
  595. /******************************************************************************
  596.  *
  597.  * SkCsSetReceiveFlags - set checksum receive flags
  598.  *
  599.  * Description:
  600.  * Use this function to set the various receive flags. According to the
  601.  * protocol flags set by the caller, the start offsets within received
  602.  * packets of the two hardware checksums are returned. These offsets must
  603.  * be stored in all receive descriptors.
  604.  *
  605.  * Arguments:
  606.  * pAc - Pointer to adapter context struct.
  607.  *
  608.  * ReceiveFlags - Any combination of SK_PROTO_XXX flags of the protocols
  609.  * for which the caller wants checksum information on received frames.
  610.  *
  611.  * pChecksum1Offset - The start offset of the first receive descriptor
  612.  * hardware checksum to be calculated for received frames is returned
  613.  * here.
  614.  *
  615.  * pChecksum2Offset - The start offset of the second receive descriptor
  616.  * hardware checksum to be calculated for received frames is returned
  617.  * here.
  618.  *
  619.  * Returns: N/A
  620.  * Returns the two hardware checksum start offsets.
  621.  */
  622. void SkCsSetReceiveFlags(
  623. SK_AC *pAc, /* Adapter context struct. */
  624. unsigned ReceiveFlags, /* New receive flags. */
  625. unsigned *pChecksum1Offset, /* Offset for hardware checksum 1. */
  626. unsigned *pChecksum2Offset, /* Offset for hardware checksum 2. */
  627. int NetNumber)
  628. {
  629. /* Save the receive flags. */
  630. pAc->Csum.ReceiveFlags[NetNumber] = ReceiveFlags;
  631. /* First checksum start offset is the IP header. */
  632. *pChecksum1Offset = SKCS_MAC_HEADER_SIZE;
  633. /*
  634.  * Second checksum start offset is the IP data. Note that this may vary
  635.  * if there are any IP header options in the actual packet.
  636.  */
  637. *pChecksum2Offset = SKCS_MAC_HEADER_SIZE + SKCS_IP_HEADER_SIZE;
  638. } /* SkCsSetReceiveFlags */
  639. #ifndef SkCsCalculateChecksum
  640. /******************************************************************************
  641.  *
  642.  * SkCsCalculateChecksum - calculate checksum for specified data
  643.  *
  644.  * Description:
  645.  * Calculate and return the 16-bit Internet Checksum for the specified
  646.  * data.
  647.  *
  648.  * Arguments:
  649.  * pData - Pointer to data for which the checksum shall be calculated.
  650.  * Note: The pointer should be aligned on a 16-bit boundary.
  651.  *
  652.  * Length - Length in bytes of data to checksum.
  653.  *
  654.  * Returns:
  655.  * The 16-bit Internet Checksum for the specified data.
  656.  *
  657.  * Note: The checksum is calculated in the machine's natural byte order,
  658.  * i.e. little vs. big endian. Thus, the resulting checksum is different
  659.  * for the same input data on little and big endian machines.
  660.  *
  661.  * However, when written back to the network packet, the byte order is
  662.  * always in correct network order.
  663.  */
  664. unsigned SkCsCalculateChecksum(
  665. void *pData, /* Data to checksum. */
  666. unsigned Length) /* Length of data. */
  667. {
  668. SK_U16 *pU16; /* Pointer to the data as 16-bit words. */
  669. unsigned long Checksum; /* Checksum; must be at least 32 bits. */
  670. /* Sum up all 16-bit words. */
  671. pU16 = (SK_U16 *) pData;
  672. for (Checksum = 0; Length > 1; Length -= 2) {
  673. Checksum += *pU16++;
  674. }
  675. /* If this is an odd number of bytes, add-in the last byte. */
  676. if (Length > 0) {
  677. #ifdef SK_BIG_ENDIAN
  678. /* Add the last byte as the high byte. */
  679. Checksum += ((unsigned) *(SK_U8 *) pU16) << 8;
  680. #else /* !SK_BIG_ENDIAN */
  681. /* Add the last byte as the low byte. */
  682. Checksum += *(SK_U8 *) pU16;
  683. #endif /* !SK_BIG_ENDIAN */
  684. }
  685. /* Add-in any carries. */
  686. SKCS_OC_ADD(Checksum, Checksum, 0);
  687. /* Add-in any new carry. */
  688. SKCS_OC_ADD(Checksum, Checksum, 0);
  689. /* Note: All bits beyond the 16-bit limit are now zero. */
  690. return ((unsigned) Checksum);
  691. } /* SkCsCalculateChecksum */
  692. #endif /* SkCsCalculateChecksum */
  693. /******************************************************************************
  694.  *
  695.  * SkCsEvent - the CSUM event dispatcher
  696.  *
  697.  * Description:
  698.  * This is the event handler for the CSUM module.
  699.  *
  700.  * Arguments:
  701.  * pAc - Pointer to adapter context.
  702.  *
  703.  * Ioc - I/O context.
  704.  *
  705.  * Event -  Event id.
  706.  *
  707.  * Param - Event dependent parameter.
  708.  *
  709.  * Returns:
  710.  * The 16-bit Internet Checksum for the specified data.
  711.  *
  712.  * Note: The checksum is calculated in the machine's natural byte order,
  713.  * i.e. little vs. big endian. Thus, the resulting checksum is different
  714.  * for the same input data on little and big endian machines.
  715.  *
  716.  * However, when written back to the network packet, the byte order is
  717.  * always in correct network order.
  718.  */
  719. int SkCsEvent(
  720. SK_AC *pAc, /* Pointer to adapter context. */
  721. SK_IOC Ioc, /* I/O context. */
  722. SK_U32 Event, /* Event id. */
  723. SK_EVPARA Param) /* Event dependent parameter. */
  724. {
  725. int ProtoIndex;
  726. int NetNumber;
  727. switch (Event) {
  728. /*
  729.  * Clear protocol statistics.
  730.  *
  731.  * Param - Protocol index, or -1 for all protocols.
  732.  *  - Net number.
  733.  */
  734. case SK_CSUM_EVENT_CLEAR_PROTO_STATS:
  735. ProtoIndex = (int)Param.Para32[0];
  736. NetNumber = (int)Param.Para32[1];
  737. if (ProtoIndex < 0) { /* Clear for all protocols. */
  738. memset(&pAc->Csum.ProtoStats[NetNumber][0], 0,
  739. sizeof(pAc->Csum.ProtoStats[NetNumber]));
  740. }
  741. else { /* Clear for individual protocol. */
  742. memset(&pAc->Csum.ProtoStats[NetNumber][ProtoIndex], 0,
  743. sizeof(pAc->Csum.ProtoStats[NetNumber][ProtoIndex]));
  744. }
  745. break;
  746. default:
  747. break;
  748. }
  749. return (0); /* Success. */
  750. } /* SkCsEvent */
  751. #endif /* SK_USE_CSUM */