Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8311596 Add separate system properties for TLS server and client for maximum chain length
  3. JDK-8313242

Release Note: Add Separate System Properties for TLS Server and Client for Maximum Chain Length

    XMLWordPrintable

Details

    • Sub-task
    • Resolution: Delivered
    • P4
    • 22
    • 22
    • security-libs

    Description

      Two new system properties, `jdk.tls.server.maxInboundCertificateChainLength` and `jdk.tls.client.maxInboundCertificateChainLength`, have been added to set the maximum allowed length of the certificate chain accepted from the client or server during TLS/DTLS handshaking.

      A service can function as both a TLS/DTLS server and client. When the service acts as a server, it enforces a maximum certificate chain length accepted from clients. When the service acts as a client, it enforces a maximum certificate chain length accepted from servers.

      These properties, if set, override the existing `jdk.tls.maxCertificateChainLength` system property. The properties work together as follows:

      If the `jdk.tls.server.maxInboundCertificateChainLength` system property is set and its value is greater than or equal to 0, this value will be used to enforce the maximum length of a client certificate chain accepted by a server. Otherwise, if the `jdk.tls.maxCertificateChainLength` system property is set and its value is greater than or equal to 0, this value will be used to enforce it. If neither property is set, a default value of 8 will be used for enforcement.

      If the `jdk.tls.client.maxInboundCertificateChainLength` system property is set and its value is greater than or equal to 0, this value will be used to enforce the maximum length of a server certificate chain accepted by a client. Otherwise, if the `jdk.tls.maxCertificateChainLength` system property is set and its value is greater than or equal to 0, this value will be used to enforce it. If neither property is set, a default value of 10 will be used for enforcement.

      In this release, the default maximum chain length accepted from clients has been changed from 10 to 8 for client certificate chains.

      Attachments

        Activity

          People

            hchao Haimay Chao
            hchao Haimay Chao
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: