Internet Engineering Task Force (IETF) P. KyzivatInternet-DraftRequest for Comments: 7405 November 2014 Updates: 5234(if approved) September 10, 2014 Intended status:Category: Standards TrackExpires: March 14, 2015ISSN: 2070-1721 Case-Sensitive String Support in ABNFdraft-kyzivat-case-sensitive-abnf-02Abstract This document extends the base definition of ABNF (Augmented Backus- Naur Form) to include a way to specifyASCIIUS-ASCII string literals that are matched in a case-sensitive manner. Status of This Memo ThisInternet-Draftissubmitted in full conformance with the provisions of BCP 78 and BCP 79. Internet-Drafts are working documentsan Internet Standards Track document. This document is a product of the Internet Engineering Task Force (IETF).Note that other groups may also distribute working documents as Internet-Drafts. The listIt represents the consensus ofcurrent Internet- Drafts is at http://datatracker.ietf.org/drafts/current/. Internet-Drafts are draft documents validthe IETF community. It has received public review and has been approved fora maximumpublication by the Internet Engineering Steering Group (IESG). Further information on Internet Standards is available in Section 2 ofsix monthsRFC 5741. Information about the current status of this document, any errata, and how to provide feedback on it may beupdated, replaced, or obsoleted by other documentsobtained atany 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 March 14, 2015.http://www.rfc-editor.org/info/rfc7405. Copyright Notice Copyright (c) 2014 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 (http://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 2. Updates toRFC5234RFC 5234 . . . . . . . . . . . . . . . . . . . . . 2 2.1. TerminalvaluesValues -literal text stringsLiteral Text Strings . . . . . . . . .23 2.2. ABNF Definition of ABNF - char-val . . . . . . . . . . . 4 3.IANA Considerations . . . . . . . . . . . . . . . . . . . . . 4 4.Security Considerations . . . . . . . . . . . . . . . . . . . 45.4. Normative References . . . . . . . . . . . . . . . . . . . . 4 Author's Address . . . . . . . . . . . . . . . . . . . . . . . .45 1. Introduction The base definition of ABNF (Augmented Backus-Naur Form) supports US- ASCII string literals.MatchingThe matching of these literals is done in acase- insensitivecase-insensitive manner. While this is often the desired behavior, in somesituationssituations, case-sensitive matching of string literals is needed. Literals for case-sensitive matching must be specified using the numeric representation of thosecharacters. Thatcharacters, which is inconvenient and error prone both to write andtoread. This document extends ABNF to have two different types ofASCIIUS-ASCII string literals. One type is matched using case-sensitive matching, while the other is matched using case-insensitive matching. These types are denoted using typeprefixes,prefixes similar to the type prefixes used with numeric values. If no prefix is used, then case- insensitive matching isused,used (as is consistent with previousbehavior.behavior). This document is structured as a set of changes to the full ABNF specification [RFC5234]. 2. Updates toRFC5234RFC 5234 This document makes changes to two parts ofRFC5234.[RFC5234]. The two changesare:are as follows: o Replace the last half ofsectionSection 2.3 ofRFC5234[RFC5234] (beginning with "ABNF permits the specification of literal text strings") with the contents of Section2.1 below.2.1. o Replace the <char-val> rule insectionSection 4 ofRFC5234[RFC5234] with the contents of Section2.2 below.2.2. 2.1. TerminalvaluesValues -literal text stringsLiteral Text Strings ABNF permits the specification of literal text strings directly, enclosed in quotation marks. Hence: command = "command string" Literal text strings are interpreted as a concatenated set of printable characters. NOTE: The character set for these strings isUS- ASCII.US-ASCII. Literal text strings in ABNF may be either case sensitive or case insensitive. The form of matching used with a literal text string is denoted by a prefix to the quoted string. The following prefixes are allowed: %s = case-sensitive %i = case-insensitive To be consistent with prior implementations of ABNF, having no prefix means that the string iscase-insensitive,case insensitive and is equivalent to having the "%i" prefix. Hence: rulename = %i"aBc" and: rulename = "abc" will both match "abc", "Abc", "aBc", "abC", "ABc", "aBC", "AbC", and "ABC". In contrast: rulename = %s"aBc" will match only"aBc","aBc" and will not match "abc", "Abc", "abC", "ABc", "aBC", "AbC", or "ABC".The way that has been used inIn thepast to define a rule that is case sensitive is to specifypast, the numerical specification of individual charactersnumerically.was used to define a case-sensitive rule. For example: rulename = %d97 %d98 %d99 or rulename = %x61.62.63 will match only the string that comprises only the lowercase characters, abc.The new way (usingUsing a literal text string with aprefix)prefix has a clear readability advantage over the old way. 2.2. ABNF Definition of ABNF - char-val char-val = case-insensitive-string / case-sensitive-string case-insensitive-string = [ "%i" ] quoted-string case-sensitive-string = "%s" quoted-string quoted-string = DQUOTE *(%x20-21 / %x23-7E) DQUOTE ; quoted string of SP and VCHAR ; without DQUOTE 3.IANA Considerations This memo includes no request to IANA. 4.Security Considerations Security is truly believed to be irrelevant to this document.5.4. Normative References [RFC5234] Crocker, D. and P. Overell, "Augmented BNF for Syntax Specifications: ABNF", STD 68, RFC 5234, January2008.2008, <http:/www.rfc-editor.org/info/rfc5234>. Author's Address Paul Kyzivat MassachusettsUS Email:United States EMail: pkyzivat@alum.mit.edu