TOC 
Network Working GroupS. Josefsson
Internet-DraftSJD
Intended status: Standards TrackDecember 03, 2007
Expires: June 5, 2008 


Using Kerberos V5 over the Transport Layer Security (TLS) protocol
draft-josefsson-kerberos5-starttls-03

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 June 5, 2008.

Abstract

This document specify how the Kerberos V5 protocol can be transported over the Transport Layer Security (TLS) protocol, to provide additional security features.



Table of Contents

1.  Introduction and Background
2.  Kerberos V5 STARTTLS Extension
3.  Channel Binding Pre-Authentication Data
4.  Examples
5.  STARTTLS aware KDC Discovery
6.  IANA Considerations
7.  Security Considerations
8.  References
    8.1.  Normative References
    8.2.  Informative References
§  Author's Address
§  Intellectual Property and Copyright Statements




 TOC 

1.  Introduction and Background

This document describe how a Kerberos V5 (Neuman, C., Yu, T., Hartman, S., and K. Raeburn, “The Kerberos Network Authentication Service (V5),” July 2005.) [RFC4120] implementation may upgrade communication between clients and Key Distribution Centers (KDCs) to use the Transport Layer Security (TLS) (Dierks, T. and E. Rescorla, “The Transport Layer Security (TLS) Protocol Version 1.1,” April 2006.) [RFC4346] protocol.

The TLS protocol offer integrity and privacy protected exchanges that can be authentication using X.509 certificates, OpenPGP keys (Mavrogiannopoulos, N., “Using OpenPGP Keys for Transport Layer Security (TLS) Authentication,” November 2007.) [RFC5081], and user name and passwords via SRP (Taylor, D., Wu, T., Mavrogiannopoulos, N., and T. Perrin, “Using the Secure Remote Password (SRP) Protocol for TLS Authentication,” November 2007.) [RFC5054].

There are several reasons to use Kerberos V5 over TLS.

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



 TOC 

2.  Kerberos V5 STARTTLS Extension

The STARTTLS extension uses the Kerberos V5 TCP extension mechanism (Josefsson, S., “Extended Kerberos Version 5 Key Distribution Center (KDC) Exchanges over TCP,” August 2007.) [RFC5021]. The extension uses bit #TBD in the extension bitmask.

The protocol is as follows. After the server has sent the 4-octet value 0x00000000 to indicate support of this extension, the stream will be controlled by the TLS protocol and its framing. The TLS protocol is initiated by the client.

Typically, the client initiate the TLS handshake protocol by sending a client hello, and the server responds, and the handshake continues until it either succeed or fails.

If for any reason the handshake fails, the STARTTLS protocol will also fail, and the TLS error is used as the error indication.

If the handshake succeeds, the Kerberos V5 authentication protocol is performed within the protected TLS channel, like a normal TCP Kerberos V5 exchange. In particular, this means that every Kerberos V5 packet will be prefixed by a 4-octet length field, that indicate the length of the Kerberos V5 packet. However, to conform with this specification, any KDC-REQ (AS-REQ or TGS-REQ) message MUST contain the "pa-channel-binding" pre-authentication data.



 TOC 

3.  Channel Binding Pre-Authentication Data

The pre-authentication structure is defined in RFC 4120 as:

   PA-DATA         ::= SEQUENCE {
           -- NOTE: first tag is [1], not [0]
           padata-type     [1] Int32,
           padata-value    [2] OCTET STRING -- might be encoded AP-REQ
   }

Here we define a new pre-authentication data, called "pa-channel-binding". It has a padata-type integer value of #TBD. The contents of the padata-value field is the channel binding data, as discussed in [RFC5056] (Williams, N., “On the Use of Channel Bindings to Secure Channels,” November 2007.).



 TOC 

4.  Examples

A complete packet flow for a successful AS-REQ/REP exchange protected by this mechanism will be as follows. The "STARTTLS-bit" is a 4-octet value with only the bit allocated for this extension set.

      Client                                               Server

       [ Kerberos V5 TCP extension mechanism negotiation starts ]

      [0x70000000 & STARTTLS-bit]  -------->
                                                      [0x00000000]
                                   <--------

                           [ TLS negotiation starts ]


      ClientHello                  -------->
                                                      ServerHello
                                                     Certificate*
                                               ServerKeyExchange*
                                              CertificateRequest*
                                   <--------      ServerHelloDone
      Certificate*
      ClientKeyExchange
      CertificateVerify*
      [ChangeCipherSpec]
      Finished                     -------->
                                               [ChangeCipherSpec]
                                   <--------             Finished

                      [ Kerberos V5 negotiation starts ]

      4 octet length field
      Kerberos V5 AS-REQ           -------->
                                               4 octet length field
                                               Kerberos V5 AS-REP
                                   <--------

      * Indicates optional or situation-dependent messages that are not
        always sent.


 TOC 

5.  STARTTLS aware KDC Discovery

Section 7.2.3 of Kerberos V5 (Neuman, C., Yu, T., Hartman, S., and K. Raeburn, “The Kerberos Network Authentication Service (V5),” July 2005.) [RFC4120] describe how Domain Name System (DNS) SRV records (Gulbrandsen, A., Vixie, P., and L. Esibov, “A DNS RR for specifying the location of services (DNS SRV),” February 2000.) [RFC2782] can be used to find the address of an KDC. Using the terminology of Section 7.2.3 of RFC 4120, we define a new Proto of "tls" to indicate that the particular KDC is intended to support this STARTTLS extension. The Service, Realm, TTL, Class, SRV, Priority, Weight, Port and Target have the same meaning as in RFC 4120.

For example:

_kerberos._tls.EXAMPLE.COM. IN SRV 0 0 88 kdc1.example.com.
_kerberos._tls.EXAMPLE.COM. IN SRV 1 0 88 kdc2.example.com.


 TOC 

6.  IANA Considerations

The IANA is requested to allocate a bit in the "Kerberos TCP Extensions" registry for the extension described in this document, as per [RFC5021] (Josefsson, S., “Extended Kerberos Version 5 Key Distribution Center (KDC) Exchanges over TCP,” August 2007.).



 TOC 

7.  Security Considerations

The security considerations in Kerberos V5, TLS, and the extension mechanism framework are inherited.

To protect against the inherent downgrade attack in the extension framework, it is suggested that implementations offer a policy to require that this extension is successfully negotiated. For interoperability with implementations that do not support this extension, it is suggested that the policy is disabled by default.



 TOC 

8.  References



 TOC 

8.1. Normative References

[RFC2119] Bradner, S., “Key words for use in RFCs to Indicate Requirement Levels,” BCP 14, RFC 2119, March 1997 (TXT, HTML, XML).
[RFC2782] Gulbrandsen, A., Vixie, P., and L. Esibov, “A DNS RR for specifying the location of services (DNS SRV),” RFC 2782, February 2000 (TXT).
[RFC4120] Neuman, C., Yu, T., Hartman, S., and K. Raeburn, “The Kerberos Network Authentication Service (V5),” RFC 4120, July 2005 (TXT).
[RFC4346] Dierks, T. and E. Rescorla, “The Transport Layer Security (TLS) Protocol Version 1.1,” RFC 4346, April 2006 (TXT).
[RFC5021] Josefsson, S., “Extended Kerberos Version 5 Key Distribution Center (KDC) Exchanges over TCP,” RFC 5021, August 2007 (TXT).
[RFC5056] Williams, N., “On the Use of Channel Bindings to Secure Channels,” RFC 5056, November 2007 (TXT).


 TOC 

8.2. Informative References

[RFC5054] Taylor, D., Wu, T., Mavrogiannopoulos, N., and T. Perrin, “Using the Secure Remote Password (SRP) Protocol for TLS Authentication,” RFC 5054, November 2007 (TXT).
[RFC5081] Mavrogiannopoulos, N., “Using OpenPGP Keys for Transport Layer Security (TLS) Authentication,” RFC 5081, November 2007 (TXT).


 TOC 

Author's Address

  Simon Josefsson
  SJD
Email:  simon@josefsson.org


 TOC 

Full Copyright Statement

Intellectual Property