2 * IP checksumming functions.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; under version 2 or later of the License.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
18 #include "qemu/osdep.h"
19 #include "net/checksum.h"
22 uint32_t net_checksum_add_cont(int len, uint8_t *buf, int seq)
24 uint32_t sum1 = 0, sum2 = 0;
27 for (i = 0; i < len - 1; i += 2) {
28 sum1 += (uint32_t)buf[i];
29 sum2 += (uint32_t)buf[i + 1];
32 sum1 += (uint32_t)buf[i];
36 return sum1 + (sum2 << 8);
38 return sum2 + (sum1 << 8);
42 uint16_t net_checksum_finish(uint32_t sum)
45 sum = (sum & 0xFFFF)+(sum >> 16);
49 uint16_t net_checksum_tcpudp(uint16_t length, uint16_t proto,
50 uint8_t *addrs, uint8_t *buf)
54 sum += net_checksum_add(length, buf); // payload
55 sum += net_checksum_add(8, addrs); // src + dst address
56 sum += proto + length; // protocol & length
57 return net_checksum_finish(sum);
60 void net_checksum_calculate(uint8_t *data, int length)
62 int mac_hdr_len, ip_len;
66 * Note: We cannot assume "data" is aligned, so the all code uses
67 * some macros that take care of possible unaligned access for
68 * struct members (just in case).
71 /* Ensure we have at least an Eth header */
72 if (length < sizeof(struct eth_header)) {
76 /* Handle the optionnal VLAN headers */
77 switch (lduw_be_p(&PKT_GET_ETH_HDR(data)->h_proto)) {
79 mac_hdr_len = sizeof(struct eth_header) +
80 sizeof(struct vlan_header);
83 if (lduw_be_p(&PKT_GET_VLAN_HDR(data)->h_proto) == ETH_P_VLAN) {
84 mac_hdr_len = sizeof(struct eth_header) +
85 2 * sizeof(struct vlan_header);
87 mac_hdr_len = sizeof(struct eth_header) +
88 sizeof(struct vlan_header);
92 mac_hdr_len = sizeof(struct eth_header);
96 length -= mac_hdr_len;
98 /* Now check we have an IP header (with an optionnal VLAN header) */
99 if (length < sizeof(struct ip_header)) {
103 ip = (struct ip_header *)(data + mac_hdr_len);
105 if (IP_HEADER_VERSION(ip) != IP_HEADER_VERSION_4) {
106 return; /* not IPv4 */
109 ip_len = lduw_be_p(&ip->ip_len);
111 /* Last, check that we have enough data for the all IP frame */
112 if (length < ip_len) {
116 ip_len -= IP_HDR_GET_LEN(ip);
122 tcp_header *tcp = (tcp_header *)(ip + 1);
124 if (ip_len < sizeof(tcp_header)) {
129 stw_he_p(&tcp->th_sum, 0);
131 csum = net_checksum_tcpudp(ip_len, ip->ip_p,
132 (uint8_t *)&ip->ip_src,
135 /* Store computed csum */
136 stw_be_p(&tcp->th_sum, csum);
143 udp_header *udp = (udp_header *)(ip + 1);
145 if (ip_len < sizeof(udp_header)) {
150 stw_he_p(&udp->uh_sum, 0);
152 csum = net_checksum_tcpudp(ip_len, ip->ip_p,
153 (uint8_t *)&ip->ip_src,
156 /* Store computed csum */
157 stw_be_p(&udp->uh_sum, csum);
162 /* Can't handle any other protocol */
168 net_checksum_add_iov(const struct iovec *iov, const unsigned int iov_cnt,
169 uint32_t iov_off, uint32_t size, uint32_t csum_offset)
171 size_t iovec_off, buf_off;
177 for (i = 0; i < iov_cnt && size; i++) {
178 if (iov_off < (iovec_off + iov[i].iov_len)) {
179 size_t len = MIN((iovec_off + iov[i].iov_len) - iov_off , size);
180 void *chunk_buf = iov[i].iov_base + (iov_off - iovec_off);
182 res += net_checksum_add_cont(len, chunk_buf, csum_offset);
189 iovec_off += iov[i].iov_len;