2015-03-28 14:01:31 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Martine Lenders <mlenders@inf.fu-berlin.de>
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
* directory for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
*/
|
|
|
|
|
2015-07-01 15:40:56 +02:00
|
|
|
#include <inttypes.h>
|
2015-03-28 14:01:31 +01:00
|
|
|
#include <stdio.h>
|
2015-07-01 15:40:56 +02:00
|
|
|
#include "od.h"
|
2015-08-07 14:56:36 +02:00
|
|
|
#include "net/inet_csum.h"
|
2015-03-28 14:01:31 +01:00
|
|
|
|
2015-07-01 15:40:56 +02:00
|
|
|
#define ENABLE_DEBUG (0)
|
|
|
|
#include "debug.h"
|
|
|
|
|
2015-08-07 14:56:36 +02:00
|
|
|
uint16_t inet_csum(uint16_t sum, const uint8_t *buf, uint16_t len)
|
2015-03-28 14:01:31 +01:00
|
|
|
{
|
|
|
|
uint32_t csum = sum;
|
|
|
|
|
2015-07-01 15:40:56 +02:00
|
|
|
DEBUG("inet_sum: sum = 0x%04" PRIx16 ", len = %" PRIu16, sum, len);
|
|
|
|
#if ENABLE_DEBUG
|
|
|
|
#ifdef MODULE_OD
|
|
|
|
DEBUG(", buf:\n");
|
|
|
|
od_hex_dump(buf, len, OD_WIDTH_DEFAULT);
|
|
|
|
#else
|
|
|
|
DEBUG(", buf output only with od module\n");
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2015-03-28 14:01:31 +01:00
|
|
|
for (int i = 0; i < (len >> 1); buf += 2, i++) {
|
|
|
|
csum += (*buf << 8) + *(buf + 1); /* group bytes by 16-byte words
|
|
|
|
* and add them*/
|
|
|
|
}
|
|
|
|
|
|
|
|
if (len & 1) { /* if len is odd */
|
|
|
|
csum += (*buf << 8); /* add last byte as top half of 16-byte word */
|
|
|
|
}
|
|
|
|
|
2015-07-01 18:19:22 +02:00
|
|
|
while (csum >> 16) {
|
|
|
|
uint16_t carry = csum >> 16;
|
|
|
|
csum = (csum & 0xffff) + carry;
|
|
|
|
}
|
2015-03-28 14:01:31 +01:00
|
|
|
|
2015-07-01 18:19:22 +02:00
|
|
|
DEBUG("inet_sum: new sum = 0x%04" PRIx32 "\n", csum);
|
2015-07-01 15:40:56 +02:00
|
|
|
|
2015-07-01 18:19:22 +02:00
|
|
|
return csum;
|
2015-03-28 14:01:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/** @} */
|