7c7b68dbe0
We recently corrected some errors handling the endianness of IPv4 addresses. These are very easy errors to make since although we mostly store them in network endianness, we sometimes need to manipulate them in host endianness. To reduce the chances of making such mistakes again, change to always using a (struct in_addr) instead of a bare in_addr_t or uint32_t to store network endian addresses. This makes it harder to accidentally do arithmetic or comparisons on such addresses as if they were host endian. We introduce a number of IN4_IS_ADDR_*() helpers to make it easier to directly work with struct in_addr values. This has the additional benefit of making the IPv4 and IPv6 paths more visually similar. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
29 lines
987 B
C
29 lines
987 B
C
/* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
* Copyright (c) 2021 Red Hat GmbH
|
|
* Author: Stefano Brivio <sbrivio@redhat.com>
|
|
*/
|
|
|
|
#ifndef CHECKSUM_H
|
|
#define CHECKSUM_H
|
|
|
|
struct udphdr;
|
|
struct icmphdr;
|
|
struct icmp6hdr;
|
|
|
|
uint32_t sum_16b(const void *buf, size_t len);
|
|
uint16_t csum_fold(uint32_t sum);
|
|
uint16_t csum_unaligned(const void *buf, size_t len, uint32_t init);
|
|
void csum_ip4_header(struct iphdr *ip4h);
|
|
void csum_udp4(struct udphdr *udp4hr,
|
|
struct in_addr saddr, struct in_addr daddr,
|
|
const void *payload, size_t len);
|
|
void csum_icmp4(struct icmphdr *ih, const void *payload, size_t len);
|
|
void csum_udp6(struct udphdr *udp6hr,
|
|
const struct in6_addr *saddr, const struct in6_addr *daddr,
|
|
const void *payload, size_t len);
|
|
void csum_icmp6(struct icmp6hdr *icmp6hr,
|
|
const struct in6_addr *saddr, const struct in6_addr *daddr,
|
|
const void *payload, size_t len);
|
|
uint16_t csum(const void *buf, size_t len, uint32_t init);
|
|
|
|
#endif /* CHECKSUM_H */
|