Re: [sipcore] draft-ietf-sipcore-location-conveyance-04

Paul Kyzivat <pkyzivat@cisco.com> Wed, 27 October 2010 01:34 UTC

Return-Path: <pkyzivat@cisco.com>
X-Original-To: sipcore@core3.amsl.com
Delivered-To: sipcore@core3.amsl.com
Received: from localhost (localhost [127.0.0.1]) by core3.amsl.com (Postfix) with ESMTP id 866473A68F9 for <sipcore@core3.amsl.com>; Tue, 26 Oct 2010 18:34:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -110.484
X-Spam-Level:
X-Spam-Status: No, score=-110.484 tagged_above=-999 required=5 tests=[AWL=0.115, BAYES_00=-2.599, RCVD_IN_DNSWL_HI=-8, USER_IN_WHITELIST=-100]
Received: from mail.ietf.org ([64.170.98.32]) by localhost (core3.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Rh5kwh76ASFB for <sipcore@core3.amsl.com>; Tue, 26 Oct 2010 18:34:17 -0700 (PDT)
Received: from rtp-iport-1.cisco.com (rtp-iport-1.cisco.com [64.102.122.148]) by core3.amsl.com (Postfix) with ESMTP id BD9F23A6907 for <sipcore@ietf.org>; Tue, 26 Oct 2010 18:34:16 -0700 (PDT)
Authentication-Results: rtp-iport-1.cisco.com; dkim=neutral (message not signed) header.i=none
X-IronPort-AV: E=Sophos;i="4.58,244,1286150400"; d="scan'208";a="175374971"
Received: from rtp-core-2.cisco.com ([64.102.124.13]) by rtp-iport-1.cisco.com with ESMTP; 27 Oct 2010 01:36:03 +0000
Received: from [161.44.174.118] (dhcp-161-44-174-118.cisco.com [161.44.174.118]) by rtp-core-2.cisco.com (8.13.8/8.14.3) with ESMTP id o9R1a34N004674; Wed, 27 Oct 2010 01:36:03 GMT
Message-ID: <4CC78202.6090700@cisco.com>
Date: Tue, 26 Oct 2010 21:36:02 -0400
From: Paul Kyzivat <pkyzivat@cisco.com>
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.11) Gecko/20101013 Thunderbird/3.1.5
MIME-Version: 1.0
To: "James M. Polk (E-mail)" <jmpolk@cisco.com>, Jon Peterson <jon.peterson@neustar.biz>
References: <20101025195020.1DA5A3A68E5@core3.amsl.com>
In-Reply-To: <20101025195020.1DA5A3A68E5@core3.amsl.com>
Content-Type: text/plain; charset="UTF-8"; format="flowed"
Content-Transfer-Encoding: 7bit
Cc: SIPCORE <sipcore@ietf.org>
Subject: Re: [sipcore] draft-ietf-sipcore-location-conveyance-04
X-BeenThere: sipcore@ietf.org
X-Mailman-Version: 2.1.9
Precedence: list
List-Id: SIP Core Working Group <sipcore.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/listinfo/sipcore>, <mailto:sipcore-request@ietf.org?subject=unsubscribe>
List-Archive: <http://www.ietf.org/mail-archive/web/sipcore>
List-Post: <mailto:sipcore@ietf.org>
List-Help: <mailto:sipcore-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/sipcore>, <mailto:sipcore-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 27 Oct 2010 01:34:20 -0000

I took a quick look at the new version, and it seems to have cleanup a 
lot. But there *still* seems to be a problem with the syntax. (Interplay 
between ABNF and text.) From the text, I find:

    The placement of the "routing-allowed" header field parameter,
    strongly encouraged by [RFC5606], is outside the locationValue, and
    MUST always be last in the header field value. The routing-allowed
    parameter MUST be present, even when no locationValue is present.

This is questionably supported by the ABNF:

    Geolocation-header = "Geolocation" HCOLON Geolocation-value
    Geolocation-value  = ( locationValue [ COMMA locationValue ] )
                         / routing-param
    locationValue      =  LAQUOT locationURI RAQUOT
                           *(SEMI geoloc-param)
    locationURI        =  sip-URI / sips-URI / pres-URI
                           / http-URI / HTTPS-URI
                           / cid-url ; (from RFC 2392)
                           / absoluteURI ; (from RFC 3261)
    geoloc-param       =  generic-param;  (from RFC 3261)
    routing-param      =  "routing-allowed" EQUAL "yes" / "no"

It only works if you presume that there are separate occurrences of 
GeoLocation-header in the message, one with just locations, another with 
just the routing-param. The routing-param certainly can't be "last in 
the header field value" except in the degenerate sense, since it must be 
first and only in a Geolocation-header.

Below are some specific cases - both valid and invalid. In each case I 
show some headers bracketed by "...". That is intended to mean other 
headers in a message, but all in the same message. (And when I show 
multiple headers, there could be other non-geoloc headers interleaved.)

* The following are legal according to the above, and probably within 
expected usage:

...
Geolocation: cid:foo@example.com
Geolocation: routing-allowed=yes
...

...
Geolocation: cid:foo@example.com,cid:bar@example.com
Geolocation: routing-allowed=yes
...

...
Geolocation: routing-allowed=no
...

* IIUC the following are allowed by the above both syntactically and 
according to the text, but is presumably not *intended* to be valid. 
(Its legal because the in each instance of Geolocation-header its last.)

...
Geolocation: routing-allowed=no
Geolocation: routing-allowed=yes
...

The following is also allowed - I don't know if its intended or not:

...
Geolocation: routing-allowed=yes
Geolocation: cid:foo@example.com,cid:bar@example.com
...

* The following is allowed by the ABNF though disallowed by the text:

...
Geolocation: cid:foo@example.com,cid:bar@example.com
Geolocation: cid:baz@example.com
...

* The following is *not* allowed by the ABNF. I suspect it might be 
intended to be valid, but I'm far from sure about it:

...
Geolocation: cid:foo@example.com,routing-allowed=yes
...

In addition to that, the text is very explicit that:

    The routing-allowed
    parameter MUST be present, even when no locationValue is present.

but then it says:

    If no routing-allowed parameter
    is present in a SIP request, a SIP intermediary MAY insert this
    value with a RECOMMENDED value of "no" by default.

So its required, but we have rules to follow if its missing. But I don't 
understand how it *can* be required, since the sender of the request may 
not understand/support Geolocation and so won't include it. ISTM that in 
reality its only *required* if the is a locationValue present, and is 
otherwise optional. In that case, an intermediary that adds a 
locationValue not only MAY, but presumably MUST add a missing 
routing-param if it adds a locationValue.

I have never understood why the routing-param is required to be last. 
And as my examples show, its difficult/impossible to enforce this in ABNF.

	Thanks,
	Paul