Internet Engineering Task Force A. Khare, Ed. Internet-Draft J. Scudder, Ed. Intended status: Standards Track Juniper Networks, Inc. Expires: December 20, 2018 June 18, 2018 BGP FlowSpec Payload Matching draft-khare-idr-bgp-flowspec-payload-match-00 Abstract The rise in frequency, volume, and pernicious effects of DDoS attacks has elevated them from fare for the specialist to generalist press. Numerous reports detail the taxonomy of DDoS types, the varying motivations of their attackers, as well as the resulting business and reputation loss of their targets. BGP FlowSpec (RFC 5575, "Dissemination of Flow Specification Rules") can be used to rapidly disseminate filters that thwart attacks, being particularly effective against the volumetric type. Operators can use existing FlowSpec components to match on pre-defined packet header fields. However recent enhancements to forwarding plane filter implementations allow matches at arbitary locations within the packet header and, to some extent, the payload. This capability can be used to detect highly amplified attacks, whose attack signature remains relatively constant. We define a new FlowSpec component, "Flexible Match Conditions", with similar matching semantics to those of existing components. This component will allow the operator to define bounded match conditions using offsets and bitmasks. Status of This Memo This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79. Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet- Drafts is at https://datatracker.ietf.org/drafts/current/. Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress." This Internet-Draft will expire on December 20, 2018. Khare & Scudder Expires December 20, 2018 [Page 1] Internet-Draft BGP FlowSpec Payload Matching June 2018 Copyright Notice Copyright (c) 2018 IETF Trust and the persons identified as the document authors. All rights reserved. This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Simplified BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Simplified BSD License. Table of Contents 1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . 2 1.1. Requirements Language . . . . . . . . . . . . . . . . . . 3 2. Flexible Match Conditions . . . . . . . . . . . . . . . . . . 3 2.1. Operator . . . . . . . . . . . . . . . . . . . . . . . . 3 2.2. Value . . . . . . . . . . . . . . . . . . . . . . . . . . 4 2.2.1. String Comparison . . . . . . . . . . . . . . . . . . 4 2.2.2. Numeric Range Comparison . . . . . . . . . . . . . . 5 2.3. Example . . . . . . . . . . . . . . . . . . . . . . . . . 6 3. Error Handling . . . . . . . . . . . . . . . . . . . . . . . 7 4. Security Considerations . . . . . . . . . . . . . . . . . . . 7 5. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 7 6. Acknowledgements . . . . . . . . . . . . . . . . . . . . . . 7 7. Contributors . . . . . . . . . . . . . . . . . . . . . . . . 7 8. References . . . . . . . . . . . . . . . . . . . . . . . . . 8 8.1. Normative References . . . . . . . . . . . . . . . . . . 8 8.2. Informative References . . . . . . . . . . . . . . . . . 8 Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . 8 1. Introduction The rise in frequency, volume, and pernicious effects of distributed denial of service ("DDoS") attacks has elevated them from fare for specialist to generalist press. Numerous reports detail the taxonomy of DDoS types, the varying motivations of their attackers, as well as the resulting business and reputation loss of their targets. BGP FlowSpec [RFC5575] can be used to rapidly disseminate filters that thwart attacks, being particularly effective against the volumetric type. Operators can use existing FlowSpec components to match on pre-defined packet header fields. However recent enhancements to forwarding plane filter implementations allow matches Khare & Scudder Expires December 20, 2018 [Page 2] Internet-Draft BGP FlowSpec Payload Matching June 2018 at arbitary locations within the packet header and, to some extent, the payload. This capability can be used to detect highly amplified attacks, whose attack signature remains relatively constant. We define a new FlowSpec component, "Flexible Match Conditions", with similar matching semantics to those of existing components. This component will allow the operator to define bounded match conditions using offsets and bitmasks. 1.1. Requirements Language The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in RFC 2119 [RFC2119] . 2. Flexible Match Conditions We define a new FlowSpec component, Type TBD, named "Flexible Match Conditions". Encoding: It contains a single {operator, value} tuple that is used to match packets according to the rules given below. 2.1. Operator The operator field is encoded as: 0 1 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |v| a |u |bit o| byte offset | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ v - Type of value being matched, string comparison (Section 2.2.1) if this bit is set, and numeric range (Section 2.2.2) if unset. a - Anchor. A 2-bit unsigned integer whose value indicates where in the packet the match should start. To avoid ambiguity with tunneled packets, the match SHOULD be anchored at the outermost header. An example is given below (Section 2.3) . Khare & Scudder Expires December 20, 2018 [Page 3] Internet-Draft BGP FlowSpec Payload Matching June 2018 +-------+---------------+-------------------------------------------+ | Value | Symbolic Name | Match start | +-------+---------------+-------------------------------------------+ | 0 | d | Layer 2 (d)ata-link layer Ethernet header | | 1 | i | Layer 3 (I)Pv4/IPv6 header | | 2 | t | Layer 4 TCP/UDP (t)ransport header | | 3 | p | Layer 4-specific (p)rotocol-specific | | | | payload | +-------+---------------+-------------------------------------------+ Anchor Field Values u - Reserved. MUST be set to 0. MUST be ignored on receipt. bit offset - A 3-bit unsigned integer indicating how many bits to ignore, following the byte offset. byte offset - An 8-bit unsigned integer indicating how many bytes to ignore, after the match start as determined by the first selected anchor bit. 2.2. Value The operator field indicates where to start matching; by contrast, the value operand indicates what to match and where to stop matching. The value operand MUST be of the type indicated by the 'v' bit, as signaled in the operator. As a result it can take on one of two forms - string vs. numeric range comparison. The length of the numeric range is constant. It uses two 64-bit fields. A string comparison uses two 128-bit fields. Its length field indicates the extent of how much of the prefix and mask fields to use in the AND operation. This is deemed sufficient for stateless inspection and practical for efficient hardware forwarding plane implementations. 2.2.1. String Comparison Khare & Scudder Expires December 20, 2018 [Page 4] Internet-Draft BGP FlowSpec Payload Matching June 2018 0 1 2 3 0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | len | reserved | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | | + + | | + prefix + | | + + | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | | + + | | + mask + | | + + | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ len - Indicates the number of corresponding bits in the prefix and mask fields to read. This length field is interpreted as (len + 1 << 1). This allows even unsigned values ranging from 2-128. prefix - Provides a bit string to be matched. The prefix and mask fields are bitwise AND'ed to create a resulting pattern. The number of bits used in the AND operation are indicated by the preceding length field. mask - Paired with the prefix field to create a bit string match. An unset bit is treated as a 'do not care' bit in the corresponding position in the prefix field. When a bit is set in the mask, the value of the bit in the corresponding location in the prefix field must match exactly. Implementations MUST only extract the number of bits from the prefix and mask fields as indicated by the preceding length field. 2.2.2. Numeric Range Comparison Khare & Scudder Expires December 20, 2018 [Page 5] Internet-Draft BGP FlowSpec Payload Matching June 2018 0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | | + low + | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | | + high + | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ low - The low value of the desired inclusive numeric range. This value MUST be numerically lower than the high value. high - The high value of the desired inclusive numeric range. This value MUST be numerically higher than the low value. 2.3. Example As an example, consider that the canonical Virtual eXtensible Local Area Network (VXLAN) [RFC7348] packet has the following headers: o Outer Ethernet Header: Source MAC address of the originating VXLAN Tunnel End Point (VTEP). o Outer IPv4/IPv6 Header: Source IP address of the originating VXLAN Tunnel End Point (VTEP). o Outer UDP Header: Random source port used to generate entropy for load balancing, and destined to the IANA-assigned VXLAN port 4789. o VXLAN Header: Used to identify a specific VXLAN overlay network. o Inner Ethernet Header and payload: Original MAC frame being encapsulated. The following table outlines where the match would start based on the anchor setting: Khare & Scudder Expires December 20, 2018 [Page 6] Internet-Draft BGP FlowSpec Payload Matching June 2018 +--------------+------------------------+ | Anchor value | Match start | +--------------+------------------------+ | d | Outer Ethernet Header | | i | Outer IPv4/IPv6 Header | | t | Outer UDP Header | | p | VXLAN Header | +--------------+------------------------+ 3. Error Handling Malicious, misbehaving, or misunderstanding implementations could advertise semantically incorrect values. Care must be taken to minimize fallout from attempting to parse such data. Any well- behaved implementation SHOULD verify that the minimum packet length undergoing a match equals (match start header length + byte offset + bit offset + value length). 4. Security Considerations This document introduces no additional security considerations beyond those already covered in [RFC5575] . 5. IANA Considerations IANA is requested to assign a type from the First Come First Served range of the "Flow Spec Component Types" registry: +------------+---------------------------+---------------+ | Type Value | Name | Reference | +------------+---------------------------+---------------+ | TBD | Flexible Match Conditions | this document | +------------+---------------------------+---------------+ 6. Acknowledgements Thanks to Rafal Jan Szarecki, Sudipto Nandi, and Jeff Haas for their valuable comments and suggestions on this document. 7. Contributors Khare & Scudder Expires December 20, 2018 [Page 7] Internet-Draft BGP FlowSpec Payload Matching June 2018 Ron Bonica Juniper Networks, Inc. 2251 Corporate Park Drive Herndon, VA 20171 US Email: rbonica@juniper.net 8. References 8.1. Normative References [RFC2119] Bradner, S., "Key words for use in RFCs to Indicate Requirement Levels", BCP 14, RFC 2119, DOI 10.17487/RFC2119, March 1997, . [RFC5575] Marques, P., Sheth, N., Raszuk, R., Greene, B., Mauch, J., and D. McPherson, "Dissemination of Flow Specification Rules", RFC 5575, DOI 10.17487/RFC5575, August 2009, . 8.2. Informative References [RFC7348] Mahalingam, M., Dutt, D., Duda, K., Agarwal, P., Kreeger, L., Sridhar, T., Bursell, M., and C. Wright, "Virtual eXtensible Local Area Network (VXLAN): A Framework for Overlaying Virtualized Layer 2 Networks over Layer 3 Networks", RFC 7348, DOI 10.17487/RFC7348, August 2014, . Authors' Addresses Anurag Khare (editor) Juniper Networks, Inc. 2251 Corporate Park Drive Herndon, Virginia 20171 USA Email: anuragk@juniper.net Khare & Scudder Expires December 20, 2018 [Page 8] Internet-Draft BGP FlowSpec Payload Matching June 2018 John Scudder (editor) Juniper Networks, Inc. 1133 Innovation Way Sunnyvale, CA 94089 US Email: jgs@juniper.net Khare & Scudder Expires December 20, 2018 [Page 9]