Re: Design: Ignored Unknown Frame Types and Intermediaries

James:
Can you construct a case where, if you follow the rule spelled out in my
earlier email, you fail to achieve interop (because I can't)?

The rule is, essentially:
If a party to the communication ignores (or removes) something it don't
understand, that must not screw up the session.

That implies that, when you add anything that must be interpreted, it then
must be declared in the version string (i.e. new version) and thus agreed
upon by both parties up front, and if you don't negotiate that other
version, you don't get to add frames whose removal would screw up the
session.

Yoav:
I agree that intermediaries must be able to remove things they'd don't
understand, and saying so in the spec is reasonable, since it'll happen
anyway.

-=R


On Sun, May 12, 2013 at 9:29 PM, James M Snell <jasnell@gmail.com> wrote:

> On Sun, May 12, 2013 at 9:11 PM, Yoav Nir <ynir@checkpoint.com> wrote:
> > That's fine for interoperability. And I believe that middleware such as
> > caching proxies or reverse proxies will simply ignore unrecognized frames
> > and pass them on.
> >
>
> Belief does not ensure interoperability.
>
> > Firewalls will either remove the unknown frames or reset the entire
> > connection, and they'll do so regardless of what the spec says. I think
> that
> > we should have text that says that middleware MAY remove frames not
> > specified in the base draft. The reason is that otherwise the only
> choice is
> > to reset the entire connection, which makes extending the protocol almost
> > impossible - you'll get into the unhappy place TLS is with "retry at
> TLS1.0
> > without extensions, and if that doesn't work go to SSL3", except it's
> worse
> > for HTTP because the unknown frame could happen at any point during the
> > connection.
> >
>
> Some frames might need to be removed, some might be ok to leave it.
> Some might not matter to the middleware at all. It's better to be
> explicit and allow for both cases.
>
> For instance, we can say that frame types in the range 0x00-7F are
> hop-by-hop and never forwarded on, but frame types in the range
> 0x80-0xFF are end-to-end and MUST be forwarded on, even if they are
> completely ignored by the middleware. That would not only ensure
> interoperability but would make use of the new extension points
> possible.
>
> - James
>
> > Yoav
> >
> > On May 12, 2013, at 9:15 PM, Roberto Peon <grmocg@gmail.com> wrote:
> >
> > I believe that the simplest thing is that, when you don't understand it,
> you
> > ignore it.
> >
> > If that frame was required at some semantic level, then you should have
> > rev'd the version number or changed the version string in some other way
> at
> > the start of communication. That is easy and robust.
> >
> > This does imply that changing any state which the baseline protocol of
> that
> > version depends upon is a no-no, but doesn't preclude changing state
> which
> > the baseline protocol of that version *doesn't* know about.
> >
> > Making that a MUST, i.e. something like:
> > And endpoint may use frames with opcodes other than those defined in this
> > specification, however it MUST NOT do so if ignoring such a frame would
> > cause an unexpected stream or session error, either directly or
> indirectly.
> > -=R
> >
> >
> > On Sat, May 11, 2013 at 9:58 PM, Yoav Nir <ynir@checkpoint.com> wrote:
> >>
> >>
> >> On May 11, 2013, at 6:27 PM, James M Snell <jasnell@gmail.com> wrote:
> >>
> >> > In the current draft, endpoints are required to "ignore" unknown and
> >> > unsupported frame types. What's not yet clear, however, is whether
> >> > such frames are required to be forwarded on by intermediaries that do
> >> > not support them.
> >> >
> >> > In other words, A talks to C via reverse proxy B. A sends a stream
> >> > that includes EXTENSION_FRAME_TYPE that is unknown to B. Is B...
> >> >
> >> > A) Required to drop the frame silently without forwarding it on to C
> >> > B) Required to always forward the frame on to C
> >> > C) Neither, B can do whatever it wants
> >> >
> >> > There is an obvious impact here on the future deployment of new
> >> > extension frame types. If the answer is A or C, we'll have to wait on
> >> > infrastructure support to use new frame types, which would be
> >> > unfortunate.
> >> >
> >> > - James
> >>
> >> I think (C) is the only answer. Consider two types of proxies: an SSL
> >> accelerator and a firewall. The SSL accelerator doesn't want to break
> >> anything, so it will forward everything (B), while a firewall doesn't
> let
> >> things pass which it doesn't understand (A). I think this will be the
> >> behavior for these two kinds of proxy regardless of what we specify.
> >>
> >> Since the UA can never know in advance what the server will support,
> there
> >> has to be some "extension support discovery" anyways. Perhaps if we had
> that
> >> in the SETTINGS frame, the proxy could filter out.  For example, add a
> >> SETTINGS_SUPPORTED_EXTENSION, which will hold an extension supported by
> the
> >> sender. You will need multiple settings values for multiple extensions.
> The
> >> server would send the same list as the client, filtered down to the
> list of
> >> extensions that it supports. A proxy could trim the list further to
> remove
> >> things it's going to drop.
> >>
> >> Yoav
> >
> >
> >
> >
> > Email secured by Check Point
> >
> >
>

Received on Monday, 13 May 2013 18:38:08 UTC