/* $KAME: ip_ecn.c,v 1.12 2002/01/07 11:34:47 kjc Exp $ */12/*-3* SPDX-License-Identifier: BSD-3-Clause4*5* Copyright (C) 1999 WIDE Project.6* All rights reserved.7*8* Redistribution and use in source and binary forms, with or without9* modification, are permitted provided that the following conditions10* are met:11* 1. Redistributions of source code must retain the above copyright12* notice, this list of conditions and the following disclaimer.13* 2. Redistributions in binary form must reproduce the above copyright14* notice, this list of conditions and the following disclaimer in the15* documentation and/or other materials provided with the distribution.16* 3. Neither the name of the project nor the names of its contributors17* may be used to endorse or promote products derived from this software18* without specific prior written permission.19*20* THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND21* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE22* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE23* ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE24* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL25* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS26* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)27* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT28* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY29* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF30* SUCH DAMAGE.31*32*/33/*34* ECN consideration on tunnel ingress/egress operation.35* http://www.aciri.org/floyd/papers/draft-ipsec-ecn-00.txt36*/3738#include "opt_inet.h"39#include "opt_inet6.h"4041#include <sys/param.h>42#include <sys/systm.h>43#include <sys/mbuf.h>44#include <sys/errno.h>4546#include <netinet/in.h>47#include <netinet/in_systm.h>48#include <netinet/ip.h>49#ifdef INET650#include <netinet/ip6.h>51#endif5253#include <netinet/ip_ecn.h>54#ifdef INET655#include <netinet6/ip6_ecn.h>56#endif5758/*59* ECN and TOS (or TCLASS) processing rules at tunnel encapsulation and60* decapsulation from RFC3168:61*62* Outer Hdr at Inner Hdr at63* Encapsulator Decapsulator64* Header fields: -------------------- ------------65* DS Field copied from inner hdr no change66* ECN Field constructed by (I) constructed by (E)67*68* ECN_ALLOWED (full functionality):69* (I) if the ECN field in the inner header is set to CE, then set the70* ECN field in the outer header to ECT(0).71* otherwise, copy the ECN field to the outer header.72*73* (E) if the ECN field in the outer header is set to CE and the ECN74* field of the inner header is not-ECT, drop the packet.75* if the ECN field in the inner header is set to ECT(0) or ECT(1)76* and the ECN field in the outer header is set to CE, then copy CE to77* the inner header. otherwise, make no change to the inner header.78*79* ECN_FORBIDDEN (limited functionality):80* (I) set the ECN field to not-ECT in the outer header.81*82* (E) if the ECN field in the outer header is set to CE, drop the packet.83* otherwise, make no change to the ECN field in the inner header.84*85* the drop rule is for backward compatibility and protection against86* erasure of CE.87*/8889/*90* modify outer ECN (TOS) field on ingress operation (tunnel encapsulation).91*/92void93ip_ecn_ingress(int mode, uint8_t *outer, const uint8_t *inner)94{9596if (!outer || !inner)97panic("NULL pointer passed to ip_ecn_ingress");9899*outer = *inner;100switch (mode) {101case ECN_ALLOWED: /* ECN allowed */102/*103* full-functionality: if the inner is CE, set ECT(0)104* to the outer. otherwise, copy the ECN field.105*/106if ((*inner & IPTOS_ECN_MASK) == IPTOS_ECN_CE)107*outer &= ~IPTOS_ECN_ECT1;108break;109case ECN_FORBIDDEN: /* ECN forbidden */110/*111* limited-functionality: set not-ECT to the outer112*/113*outer &= ~IPTOS_ECN_MASK;114break;115case ECN_NOCARE: /* no consideration to ECN */116break;117}118}119120/*121* modify inner ECN (TOS) field on egress operation (tunnel decapsulation).122* the caller should drop the packet if the return value is 0.123*/124int125ip_ecn_egress(int mode, const uint8_t *outer, uint8_t *inner)126{127128if (!outer || !inner)129panic("NULL pointer passed to ip_ecn_egress");130131switch (mode) {132case ECN_ALLOWED:133/*134* full-functionality: if the outer is CE and the inner is135* not-ECT, should drop it. otherwise, copy CE.136*/137if ((*outer & IPTOS_ECN_MASK) == IPTOS_ECN_CE) {138if ((*inner & IPTOS_ECN_MASK) == IPTOS_ECN_NOTECT)139return (0);140*inner |= IPTOS_ECN_CE;141}142break;143case ECN_FORBIDDEN: /* ECN forbidden */144/*145* limited-functionality: if the outer is CE, should drop it.146* otherwise, leave the inner.147*/148if ((*outer & IPTOS_ECN_MASK) == IPTOS_ECN_CE)149return (0);150break;151case ECN_NOCARE: /* no consideration to ECN */152break;153}154return (1);155}156157#ifdef INET6158void159ip6_ecn_ingress(int mode, uint32_t *outer, const uint32_t *inner)160{161uint8_t outer8, inner8;162163if (!outer || !inner)164panic("NULL pointer passed to ip6_ecn_ingress");165166inner8 = (ntohl(*inner) >> 20) & 0xff;167ip_ecn_ingress(mode, &outer8, &inner8);168*outer &= ~htonl(0xff << 20);169*outer |= htonl((uint32_t)outer8 << 20);170}171172int173ip6_ecn_egress(int mode, const uint32_t *outer, uint32_t *inner)174{175uint8_t outer8, inner8, oinner8;176177if (!outer || !inner)178panic("NULL pointer passed to ip6_ecn_egress");179180outer8 = (ntohl(*outer) >> 20) & 0xff;181inner8 = oinner8 = (ntohl(*inner) >> 20) & 0xff;182if (ip_ecn_egress(mode, &outer8, &inner8) == 0)183return (0);184if (inner8 != oinner8) {185*inner &= ~htonl(0xff << 20);186*inner |= htonl((uint32_t)inner8 << 20);187}188return (1);189}190#endif191192193