]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/net/bsd_tcpip/v2_0/src/sys/netinet/ip_ecn.c
unified MX27, MX25, MX37 trees
[karo-tx-redboot.git] / packages / net / bsd_tcpip / v2_0 / src / sys / netinet / ip_ecn.c
1 //==========================================================================
2 //
3 //      src/sys/netinet/ip_ecn.c
4 //
5 //==========================================================================
6 //####BSDCOPYRIGHTBEGIN####
7 //
8 // -------------------------------------------
9 //
10 // Portions of this software may have been derived from OpenBSD, 
11 // FreeBSD or other sources, and are covered by the appropriate
12 // copyright disclaimers included herein.
13 //
14 // Portions created by Red Hat are
15 // Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
16 //
17 // -------------------------------------------
18 //
19 //####BSDCOPYRIGHTEND####
20 //==========================================================================
21
22 /*      $KAME: ip_ecn.c,v 1.11 2001/05/03 16:09:29 itojun Exp $ */
23
24 /*
25  * Copyright (C) 1999 WIDE Project.
26  * All rights reserved.
27  *
28  * Redistribution and use in source and binary forms, with or without
29  * modification, are permitted provided that the following conditions
30  * are met:
31  * 1. Redistributions of source code must retain the above copyright
32  *    notice, this list of conditions and the following disclaimer.
33  * 2. Redistributions in binary form must reproduce the above copyright
34  *    notice, this list of conditions and the following disclaimer in the
35  *    documentation and/or other materials provided with the distribution.
36  * 3. Neither the name of the project nor the names of its contributors
37  *    may be used to endorse or promote products derived from this software
38  *    without specific prior written permission.
39  *
40  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
41  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
44  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50  * SUCH DAMAGE.
51  *
52  */
53 /*
54  * ECN consideration on tunnel ingress/egress operation.
55  * http://www.aciri.org/floyd/papers/draft-ipsec-ecn-00.txt
56  */
57
58 #include <sys/param.h>
59 #include <sys/malloc.h>
60 #include <sys/mbuf.h>
61 #include <sys/errno.h>
62
63 #include <netinet/in.h>
64 #include <netinet/in_systm.h>
65 #include <netinet/ip.h>
66 #ifdef INET6
67 #include <netinet/ip6.h>
68 #endif
69
70 #include <netinet/ip_ecn.h>
71
72 /*
73  * modify outer ECN (TOS) field on ingress operation (tunnel encapsulation).
74  */
75 void
76 ip_ecn_ingress(mode, outer, inner)
77         int mode;
78         u_int8_t *outer;
79         const u_int8_t *inner;
80 {
81         if (!outer || !inner)
82                 panic("NULL pointer passed to ip_ecn_ingress");
83
84         *outer = *inner;
85         switch (mode) {
86         case ECN_ALLOWED:               /* ECN allowed */
87                 *outer &= ~IPTOS_CE;
88                 break;
89         case ECN_FORBIDDEN:             /* ECN forbidden */
90                 *outer &= ~(IPTOS_ECT | IPTOS_CE);
91                 break;
92         case ECN_NOCARE:        /* no consideration to ECN */
93                 break;
94         }
95 }
96
97 /*
98  * modify inner ECN (TOS) field on egress operation (tunnel decapsulation).
99  */
100 void
101 ip_ecn_egress(mode, outer, inner)
102         int mode;
103         const u_int8_t *outer;
104         u_int8_t *inner;
105 {
106         if (!outer || !inner)
107                 panic("NULL pointer passed to ip_ecn_egress");
108
109         switch (mode) {
110         case ECN_ALLOWED:
111                 if (*outer & IPTOS_CE)
112                         *inner |= IPTOS_CE;
113                 break;
114         case ECN_FORBIDDEN:             /* ECN forbidden */
115         case ECN_NOCARE:        /* no consideration to ECN */
116                 break;
117         }
118 }
119
120 #ifdef INET6
121 void
122 ip6_ecn_ingress(mode, outer, inner)
123         int mode;
124         u_int32_t *outer;
125         const u_int32_t *inner;
126 {
127         u_int8_t outer8, inner8;
128
129         if (!outer || !inner)
130                 panic("NULL pointer passed to ip6_ecn_ingress");
131
132         inner8 = (ntohl(*inner) >> 20) & 0xff;
133         ip_ecn_ingress(mode, &outer8, &inner8);
134         *outer &= ~htonl(0xff << 20);
135         *outer |= htonl((u_int32_t)outer8 << 20);
136 }
137
138 void
139 ip6_ecn_egress(mode, outer, inner)
140         int mode;
141         const u_int32_t *outer;
142         u_int32_t *inner;
143 {
144         u_int8_t outer8, inner8;
145
146         if (!outer || !inner)
147                 panic("NULL pointer passed to ip6_ecn_egress");
148
149         outer8 = (ntohl(*outer) >> 20) & 0xff;
150         ip_ecn_egress(mode, &outer8, &inner8);
151         *inner &= ~htonl(0xff << 20);
152         *inner |= htonl((u_int32_t)inner8 << 20);
153 }
154 #endif