blob: 0cb08e6fb6df9eacfbb94ac53e9b81f51ead993e [file] [log] [blame]
Vlad Yasevich9ad09772007-12-16 14:06:41 -08001/* SCTP kernel reference Implementation
2 * Copyright (c) 1999-2001 Motorola, Inc.
3 * Copyright (c) 2001-2003 International Business Machines, Corp.
4 *
5 * This file is part of the SCTP kernel reference Implementation
6 *
7 * SCTP Checksum functions
8 *
9 * The SCTP reference implementation is free software;
10 * you can redistribute it and/or modify it under the terms of
11 * the GNU General Public License as published by
12 * the Free Software Foundation; either version 2, or (at your option)
13 * any later version.
14 *
15 * The SCTP reference implementation is distributed in the hope that it
16 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
17 * ************************
18 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
19 * See the GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with GNU CC; see the file COPYING. If not, write to
23 * the Free Software Foundation, 59 Temple Place - Suite 330,
24 * Boston, MA 02111-1307, USA.
25 *
26 * Please send any bug reports or fixes you make to the
27 * email address(es):
28 * lksctp developers <lksctp-developers@lists.sourceforge.net>
29 *
30 * Or submit a bug report through the following website:
31 * http://www.sf.net/projects/lksctp
32 *
33 * Written or modified by:
34 * Dinakaran Joseph
35 * Jon Grimm <jgrimm@us.ibm.com>
36 * Sridhar Samudrala <sri@us.ibm.com>
37 *
38 * Rewritten to use libcrc32c by:
39 * Vlad Yasevich <vladislav.yasevich@hp.com>
40 *
41 * Any bugs reported given to us we will try to fix... any fixes shared will
42 * be incorporated into the next SCTP release.
43 */
44
Daniel Borkmanna05b1012013-07-01 18:10:36 +020045#ifndef __sctp_checksum_h__
46#define __sctp_checksum_h__
47
Vlad Yasevich9ad09772007-12-16 14:06:41 -080048#include <linux/types.h>
49#include <net/sctp/sctp.h>
50#include <linux/crc32c.h>
51
Vlad Yasevich4458f042009-02-13 08:33:42 +000052static inline __u32 sctp_crc32c(__u32 crc, u8 *buffer, u16 length)
Vlad Yasevich9ad09772007-12-16 14:06:41 -080053{
Vlad Yasevich4458f042009-02-13 08:33:42 +000054 return crc32c(crc, buffer, length);
Harvey Harrison336d3262008-07-18 23:07:09 -070055}
56
Vlad Yasevich4458f042009-02-13 08:33:42 +000057static inline __u32 sctp_start_cksum(__u8 *buffer, __u16 length)
Harvey Harrison336d3262008-07-18 23:07:09 -070058{
Vlad Yasevich4458f042009-02-13 08:33:42 +000059 __u32 crc = ~(__u32)0;
Vlad Yasevich9ad09772007-12-16 14:06:41 -080060 __u8 zero[sizeof(__u32)] = {0};
61
62 /* Optimize this routine to be SCTP specific, knowing how
63 * to skip the checksum field of the SCTP header.
64 */
65
66 /* Calculate CRC up to the checksum. */
Harvey Harrison336d3262008-07-18 23:07:09 -070067 crc = sctp_crc32c(crc, buffer, sizeof(struct sctphdr) - sizeof(__u32));
Vlad Yasevich9ad09772007-12-16 14:06:41 -080068
69 /* Skip checksum field of the header. */
Harvey Harrison336d3262008-07-18 23:07:09 -070070 crc = sctp_crc32c(crc, zero, sizeof(__u32));
Vlad Yasevich9ad09772007-12-16 14:06:41 -080071
72 /* Calculate the rest of the CRC. */
Harvey Harrison336d3262008-07-18 23:07:09 -070073 crc = sctp_crc32c(crc, &buffer[sizeof(struct sctphdr)],
Vlad Yasevich9ad09772007-12-16 14:06:41 -080074 length - sizeof(struct sctphdr));
75 return crc;
76}
77
Vlad Yasevich4458f042009-02-13 08:33:42 +000078static inline __u32 sctp_update_cksum(__u8 *buffer, __u16 length, __u32 crc32)
Vlad Yasevich9ad09772007-12-16 14:06:41 -080079{
Harvey Harrison336d3262008-07-18 23:07:09 -070080 return sctp_crc32c(crc32, buffer, length);
Vlad Yasevich9ad09772007-12-16 14:06:41 -080081}
82
Simon Hormaneee1d5a2013-04-19 10:54:58 +090083static inline __le32 sctp_end_cksum(__u32 crc32)
Vlad Yasevich9ad09772007-12-16 14:06:41 -080084{
Vlad Yasevich4458f042009-02-13 08:33:42 +000085 return cpu_to_le32(~crc32);
Vlad Yasevich9ad09772007-12-16 14:06:41 -080086}
Daniel Borkmanna05b1012013-07-01 18:10:36 +020087
88#endif /* __sctp_checksum_h__ */