blob: b0c47e2eccf10849d7ca097eeeaf3b08c307837e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _INET_ECN_H_
2#define _INET_ECN_H_
3
4#include <linux/ip.h>
Thomas Graf2566a502005-11-05 21:14:04 +01005#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <net/dsfield.h>
7
8enum {
9 INET_ECN_NOT_ECT = 0,
10 INET_ECN_ECT_1 = 1,
11 INET_ECN_ECT_0 = 2,
12 INET_ECN_CE = 3,
13 INET_ECN_MASK = 3,
14};
15
16static inline int INET_ECN_is_ce(__u8 dsfield)
17{
18 return (dsfield & INET_ECN_MASK) == INET_ECN_CE;
19}
20
21static inline int INET_ECN_is_not_ect(__u8 dsfield)
22{
23 return (dsfield & INET_ECN_MASK) == INET_ECN_NOT_ECT;
24}
25
26static inline int INET_ECN_is_capable(__u8 dsfield)
27{
28 return (dsfield & INET_ECN_ECT_0);
29}
30
31static inline __u8 INET_ECN_encapsulate(__u8 outer, __u8 inner)
32{
33 outer &= ~INET_ECN_MASK;
34 outer |= !INET_ECN_is_ce(inner) ? (inner & INET_ECN_MASK) :
35 INET_ECN_ECT_0;
36 return outer;
37}
38
39#define INET_ECN_xmit(sk) do { inet_sk(sk)->tos |= INET_ECN_ECT_0; } while (0)
40#define INET_ECN_dontxmit(sk) \
41 do { inet_sk(sk)->tos &= ~INET_ECN_MASK; } while (0)
42
43#define IP6_ECN_flow_init(label) do { \
44 (label) &= ~htonl(INET_ECN_MASK << 20); \
45 } while (0)
46
47#define IP6_ECN_flow_xmit(sk, label) do { \
48 if (INET_ECN_is_capable(inet_sk(sk)->tos)) \
49 (label) |= __constant_htons(INET_ECN_ECT_0 << 4); \
50 } while (0)
51
Thomas Graf2566a502005-11-05 21:14:04 +010052static inline int IP_ECN_set_ce(struct iphdr *iph)
Linus Torvalds1da177e2005-04-16 15:20:36 -070053{
54 u32 check = iph->check;
55 u32 ecn = (iph->tos + 1) & INET_ECN_MASK;
56
57 /*
58 * After the last operation we have (in binary):
59 * INET_ECN_NOT_ECT => 01
60 * INET_ECN_ECT_1 => 10
61 * INET_ECN_ECT_0 => 11
62 * INET_ECN_CE => 00
63 */
64 if (!(ecn & 2))
Thomas Graf2566a502005-11-05 21:14:04 +010065 return !ecn;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67 /*
68 * The following gives us:
69 * INET_ECN_ECT_1 => check += htons(0xFFFD)
70 * INET_ECN_ECT_0 => check += htons(0xFFFE)
71 */
72 check += htons(0xFFFB) + htons(ecn);
73
74 iph->check = check + (check>=0xFFFF);
75 iph->tos |= INET_ECN_CE;
Thomas Graf2566a502005-11-05 21:14:04 +010076 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077}
78
79static inline void IP_ECN_clear(struct iphdr *iph)
80{
81 iph->tos &= ~INET_ECN_MASK;
82}
83
84static inline void ipv4_copy_dscp(struct iphdr *outer, struct iphdr *inner)
85{
86 u32 dscp = ipv4_get_dsfield(outer) & ~INET_ECN_MASK;
87 ipv4_change_dsfield(inner, INET_ECN_MASK, dscp);
88}
89
90struct ipv6hdr;
91
Thomas Graf2566a502005-11-05 21:14:04 +010092static inline int IP6_ECN_set_ce(struct ipv6hdr *iph)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
94 if (INET_ECN_is_not_ect(ipv6_get_dsfield(iph)))
Thomas Graf2566a502005-11-05 21:14:04 +010095 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 *(u32*)iph |= htonl(INET_ECN_CE << 20);
Thomas Graf2566a502005-11-05 21:14:04 +010097 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
99
100static inline void IP6_ECN_clear(struct ipv6hdr *iph)
101{
102 *(u32*)iph &= ~htonl(INET_ECN_MASK << 20);
103}
104
105static inline void ipv6_copy_dscp(struct ipv6hdr *outer, struct ipv6hdr *inner)
106{
107 u32 dscp = ipv6_get_dsfield(outer) & ~INET_ECN_MASK;
108 ipv6_change_dsfield(inner, INET_ECN_MASK, dscp);
109}
110
Thomas Graf2566a502005-11-05 21:14:04 +0100111static inline int INET_ECN_set_ce(struct sk_buff *skb)
112{
113 switch (skb->protocol) {
114 case __constant_htons(ETH_P_IP):
115 if (skb->nh.raw + sizeof(struct iphdr) <= skb->tail)
116 return IP_ECN_set_ce(skb->nh.iph);
117 break;
118
119 case __constant_htons(ETH_P_IPV6):
120 if (skb->nh.raw + sizeof(struct ipv6hdr) <= skb->tail)
121 return IP6_ECN_set_ce(skb->nh.ipv6h);
122 break;
123 }
124
125 return 0;
126}
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128#endif