TOC 
Behavior Engineering for HindranceR. Denis-Courmont
AvoidanceNokia
Internet-DraftOctober 20, 2008
Intended status: Experimental 
Expires: April 23, 2009 


IPv6 destination header option for IPv4 translator mapping notification
draft-denis-behave-v4v6exthdr-00

Status of this Memo

By submitting this Internet-Draft, each author represents that any applicable patent or other IPR claims of which he or she is aware have been or will be disclosed, and any of which he or she becomes aware will be disclosed, in accordance with Section 6 of BCP 79.

Internet-Drafts are working documents of the Internet Engineering Task Force (IETF), its areas, and its working groups. Note that other groups may also distribute working documents as Internet-Drafts.

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.”

The list of current Internet-Drafts can be accessed at http://www.ietf.org/ietf/1id-abstracts.txt.

The list of Internet-Draft Shadow Directories can be accessed at http://www.ietf.org/shadow.html.

This Internet-Draft will expire on April 23, 2009.

Abstract

This memo defines a new IPv6 Destination header option to convey the transport mapping information from an IPv4-IPv4 protocol translator to the IPv6 end of a protocol-translated packet flow.



Table of Contents

1.  Introduction
2.  Definitions
3.  IPv4-IPv6 Translation
    3.1.  Inserting the flow mapping option
        3.1.1.  Usage with connection-oriented protocols
    3.2.  Receiving the flow mapping option
4.  Option format
5.  Security Considerations
6.  IANA Considerations
Appendix A.  API Considerations
7.  References
    7.1.  Normative References
    7.2.  Informative References
§  Author's Address
§  Intellectual Property and Copyright Statements




 TOC 

1.  Introduction

To overcome the shortage of IPv4 addresses within the Internet, Network Address and Port Translators (NATs) have been widely deployed, such that multiple IPv4 nodes can share a single IPv4 address. However, that method is known to break certain application protocols, which need to know their own assigned external IP address and/or port number (i.e. the transport address). New solutions are now under consideration which would extend NAT mechanisms such that IPv6 nodes could access the IPv4 Internet.

This memo proposes an in-band method for such a IPv6-IPv4 NAT to notify affected IPv6 applications of the IPv4 transport address associated with any of their active communication flows. A new option for the IPv6 Destination extension header, the Translated Flow Mapping option is hereby defined to carry this information.



 TOC 

2.  Definitions

TBD.

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 [RFC2119] (Bradner, S., “Key words for use in RFCs to Indicate Requirement Levels,” March 1997.).



 TOC 

3.  IPv4-IPv6 Translation

An IPv4-IPv6 NAT performs two separate functions:

The details of IPv4-IPv6 translation are beyond the scope of this document, please refer to [whatever IETF ends up specifying for this] instead.



 TOC 

3.1.  Inserting the flow mapping option

When a translator receives an IPv4 packet, following certain conditions, it inserts an IPv6 Destination extension header containing a Translated Flow Mapping option (as defined in the next section).

As a general rule, this option MUST NOT be inserted, if the resulting packet would exceed the known MTU to the IPv6 destination, or 1280 bytes if there is no known MTU.



 TOC 

3.1.1.  Usage with connection-oriented protocols

For connection-oriented transport protocols, this option SHOULD be inserted is part of the protocol handshake, and SHOULD NOT be inserted otherwise.



 TOC 

3.1.1.1.  Datagram Congestion Control Protocol (DCCP)

This option SHOULD be inserted within DCCP Sync, DCCP Sync/Ack and DCCP Listen packets. See [RFC4340] (Kohler, E., Handley, M., and S. Floyd, “Datagram Congestion Control Protocol (DCCP),” March 2006.) and [I‑D.ietf‑dccp‑simul‑open] (Fairhurst, G., “DCCP Simultaneous-Open Technique to Facilitate NAT/Middlebox Traversal,” May 2009.).



 TOC 

3.1.1.2.  Stream Control Transmission Protocol (SCTP)

TBD.



 TOC 

3.1.1.3.  Transmission Control Protocol (TCP)

This option SHOULD be inserted within TCP SYN and TCP SYN/ACK packets. See [RFC0793] (Postel, J., “Transmission Control Protocol,” September 1981.).



 TOC 

3.2.  Receiving the flow mapping option

Processing of the flow mapping option is optional. In fact, an IPv6 implementation that does not support the flow mapping option MUST ignore it, according to [RFC2460] (Deering, S. and R. Hinden, “Internet Protocol, Version 6 (IPv6) Specification,” December 1998.) (this is not a new requirement for IPv6 implementation).

The content of the flow mapping option is merely informational. Hence, there are no particular requirements as regards its processing. An IPv6 stack that implements the flow mapping option MAY store and or forward the flow mapping informations, as it sees fit. For instance, it might forward the informations to the application (see below for an example API) if it requests them.



 TOC 

4.  Option format



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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|  Option Type  | Option Length |          Mapped Port          |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                      Mapped IPv4 Address                      |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                      Remote IPv4 Address                      |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
 Translated Flow Mapping option 

The Translated Flow Mapping option format is defined as follow:

Option Type:
XXX (TBD: IANA)
Option Length:
12 (12 bytes)
Mapped Port:
If the type of the first header that is not an IPv6 extension header is DCCP, SCTP, TCP, UDP or UDP-Lite, the transport protocol mapped port number. This is the destination port number found in the original IPv4 packet that was translated into the IPv6 packet containing this option. Otherwise, this must be set to zero by sender, and ignored by receivers.
Mapped IPv4 Address:
Destination IPv4 address, as found in the origin IPv4 packet before translation.
Remote IPv4 Address:
Source IPv4 address, as found in the origin IPv4 packet before translation.

The Translated Flow Mapping option requires a 4n alignment (as defined per [RFC2460] (Deering, S. and R. Hinden, “Internet Protocol, Version 6 (IPv6) Specification,” December 1998.) section 4.2).



 TOC 

5.  Security Considerations

TBD.



 TOC 

6.  IANA Considerations

The Translated Flow Mapping option requires an IPv6 Option number.

IPv6 Option Number [RFC2460] (Deering, S. and R. Hinden, “Internet Protocol, Version 6 (IPv6) Specification,” December 1998.):

HEX         act  chg  rest
---         ---  ---  -----
 XX          00   0   XXXXX     Translated Flow Mapping

The first two bits indicate that the IPv6 node may skip over this option and continue processing the header if it doesn't recognize the option type, and the third bit indicates that the Option Data may not change en-route.

This document should be listed as the reference document.



 TOC 

Appendix A.  API Considerations

This section is non-normative. It defines a potential API to retrieve the flow mapping information as an extension to the Advanced IPv6 socket API [RFC3542] (Stevens, W., Thomas, M., Nordmark, E., and T. Jinmei, “Advanced Sockets Application Program Interface (API) for IPv6,” May 2003.).

The flow mapping informations shall be passed to applications using a structure defined in <netinet/in.h>, and containing at least the following fields:


struct in6_ipv4flowmapping {
  struct uint16_t i4fm6_mapped_port;
  struct in_addr  i4fm6_mapped_addr;
  struct in_addr  i4fm6_remote_addr;
};

 Flow mapping structure 

For datagram (type SOCK_DGRAM) and raw (type SOCK_RAW) sockets, a socket option can configure receiving the flow information as ancilliary data on a per-packet basis, using recvmsg. This socket option shall be set to 0 (off) by default. Setting it to 1 (on) shall enabled flow mapping infos reception. Setting it to -1 (default) shall disable it. When enabled, an ancilliary data with level IPPROTO_IPV6, type IPV6_IPV4FLOWMAPPING shall be returned to the application, if a Flow Mapping option was found in the received packet.


int on = 1;

setsockopt(fd, IPPROTO_IPV6, IPV6_RECVIPV4FLOWMAPPING,
           &yes, sizeof(yes));

 Per-packet socket option 

For a connected socket, a read-only socket option may be used to fetch the flow mapping information if known (i.e. if at least one packet with a Flow Mapping Option was received). If unknown, the returned structure shall contain all zeroes.


struct in6_ipv4flowmapping val;

getsockopt(fd, IPPROTO_IPV6, IPV6_IPV4FLOWMAPPING,
           &val, sizeof(val));

 Connected socket option 



 TOC 

7.  References



 TOC 

7.1. Normative References

[I-D.ietf-dccp-simul-open] Fairhurst, G., “DCCP Simultaneous-Open Technique to Facilitate NAT/Middlebox Traversal,” draft-ietf-dccp-simul-open-08 (work in progress), May 2009 (TXT).
[RFC0793] Postel, J., “Transmission Control Protocol,” STD 7, RFC 793, September 1981 (TXT).
[RFC2119] Bradner, S., “Key words for use in RFCs to Indicate Requirement Levels,” BCP 14, RFC 2119, March 1997 (TXT, HTML, XML).
[RFC2460] Deering, S. and R. Hinden, “Internet Protocol, Version 6 (IPv6) Specification,” RFC 2460, December 1998 (TXT, HTML, XML).
[RFC4340] Kohler, E., Handley, M., and S. Floyd, “Datagram Congestion Control Protocol (DCCP),” RFC 4340, March 2006 (TXT).


 TOC 

7.2. Informative References

[RFC3542] Stevens, W., Thomas, M., Nordmark, E., and T. Jinmei, “Advanced Sockets Application Program Interface (API) for IPv6,” RFC 3542, May 2003 (TXT).


 TOC 

Author's Address

  Rémi Denis-Courmont
  Nokia Corporation
  P.O. Box 407
  NOKIA GROUP 00045
  FI
Phone:  +358 50 487 6315
Email:  remi.denis-courmont@nokia.com


 TOC 

Full Copyright Statement

Intellectual Property